The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
14 lines
303 B
JavaScript
14 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();
|