mirror of
https://github.com/nodejs/node.git
synced 2024-11-24 20:29:23 +01:00
fb6e980e1e
PR-URL: https://github.com/nodejs/node/pull/17948 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
10 lines
260 B
JavaScript
10 lines
260 B
JavaScript
'use strict';
|
|
// Regression test for https://github.com/nodejs/node-v0.x-archive/issues/819.
|
|
|
|
require('../common');
|
|
const net = require('net');
|
|
|
|
// Connect to something that we need to DNS resolve
|
|
const c = net.createConnection(80, 'google.com');
|
|
c.destroy();
|