1'use strict';
2
3// test-tls-destroy-stream specifically for TLS1.2.
4
5const common = require('../common');
6if (!common.hasCrypto)
7  common.skip('missing crypto');
8
9const tls = require('tls');
10
11tls.DEFAULT_MAX_VERSION = 'TLSv1.2';
12
13require('./test-tls-destroy-stream.js');
14