mirror of https://github.com/nodejs/node.git
15 lines
303 B
JavaScript
15 lines
303 B
JavaScript
var assert = require('assert');
|
|
var common = require('../common');
|
|
|
|
var net = require('net');
|
|
|
|
net.createServer(function(conn) {
|
|
conn.unref();
|
|
}).listen(common.PORT).unref();
|
|
|
|
net.connect(common.PORT, 'localhost').pause();
|
|
|
|
setTimeout(function() {
|
|
assert.fail('expected to exit');
|
|
}, 1000).unref();
|