• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2const common = require('../common');
3if (!common.hasCrypto)
4  common.skip('missing crypto');
5
6// Run test-tls-ticket.js with TLS1.2
7
8const tls = require('tls');
9
10tls.DEFAULT_MAX_VERSION = 'TLSv1.2';
11
12require('./test-tls-ticket.js');
13