mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 14:36:08 +00:00

Only `test-stdin-from-file.js` has been modified so that the `stdin.txt` is written in a temp directory instead of the `fixtures` directory. PR-URL: https://github.com/nodejs/node/pull/6187 Reviewed-By: James M Snell <jasnell@gmail.com>
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var net = require('net');
|
|
|
|
// Connect to something that we need to DNS resolve
|
|
var c = net.createConnection(80, 'google.com');
|
|
c.destroy();
|