node/test/parallel/test-tls-client-default-ciphers.js
Rich Trott 3d23567622 test: remove unused variables from TLS tests
Some of the TLS tests have variables that do not get used. This removes
those variables.

PR-URL: https://github.com/nodejs/node/pull/4424
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-12-28 20:01:47 -08:00

29 lines
508 B
JavaScript

'use strict';
var assert = require('assert');
var common = require('../common');
if (!common.hasCrypto) {
console.log('1..0 # Skipped: missing crypto');
return;
}
var tls = require('tls');
function Done() {}
function test1() {
var ciphers = '';
tls.createSecureContext = function(options) {
ciphers = options.ciphers;
throw new Done();
};
try {
tls.connect(common.PORT);
} catch (e) {
assert(e instanceof Done);
}
assert.equal(ciphers, tls.DEFAULT_CIPHERS);
}
test1();