summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-client-resume-12.js
blob: 7767d3dd2a5cc9131b9209cefde08ba875c9d2a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';

// test-tls-client-resume specifically for TLS1.2.

const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');

const tls = require('tls');

tls.DEFAULT_MAX_VERSION = 'TLSv1.2';

require('./test-tls-client-resume.js');