mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 18:07:48 +00:00

`dns.lookup` options only accepts integer for `family` options, having a string doesn't really make sense here. PR-URL: https://github.com/nodejs/node/pull/41431 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
21 lines
482 B
JavaScript
21 lines
482 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// This test ensures that socket.connect can be called without callback
|
|
// which is optional.
|
|
|
|
const net = require('net');
|
|
|
|
const server = net.createServer(common.mustCall(function(conn) {
|
|
conn.end();
|
|
server.close();
|
|
})).listen(0, 'localhost', common.mustCall(function() {
|
|
const client = new net.Socket();
|
|
|
|
client.on('ready', common.mustCall(function() {
|
|
client.end();
|
|
}));
|
|
|
|
client.connect(server.address());
|
|
}));
|