mirror of https://github.com/nodejs/node.git
16 lines
329 B
JavaScript
16 lines
329 B
JavaScript
'use strict';
|
|
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(null, null, 'expected to exit');
|
|
}, 1000).unref();
|