You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
359 B

'use strict';
var common = require('../common');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var https = require('https');
var http = require('http');
https.get('https://www.google.com/', common.mustCall(function(res) {
res.resume();
}));
http.get('http://www.google.com/', common.mustCall(function(res) {
res.resume();
}));