blob: ab5aa3950938b33bc70c35512f3ffe59186b1d27 [file] [log] [blame]
'use strict';
// Test for authorized access to the server which has a cross root
// certification between Starfield Class 2 and ValiCert Class 2
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const tls = require('tls');
const socket = tls.connect(443, 'address.melissadata.net', function() {
socket.resume();
socket.destroy();
});