summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-cli-max-version-1.3.js
blob: c04354fe4ac9a13d4b488ae3f46765a74148dc1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Flags: --tls-max-v1.3
'use strict';
const common = require('../common');
if (!common.hasCrypto) common.skip('missing crypto');

// Check that node `--tls-max-v1.3` is supported.

const assert = require('assert');
const tls = require('tls');

assert.strictEqual(tls.DEFAULT_MAX_VERSION, 'TLSv1.3');
assert.strictEqual(tls.DEFAULT_MIN_VERSION, 'TLSv1.2');

// Check the min-max version protocol versions against these CLI settings.
require('./test-tls-min-max-version.js');