mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 18:02:21 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
29 lines
753 B
JavaScript
29 lines
753 B
JavaScript
'use strict';
|
|
var cluster = require('cluster');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
if (cluster.isMaster) {
|
|
var worker = cluster.fork();
|
|
assert.ok(!worker.isDead(),
|
|
'isDead() should return false right after the worker has been ' +
|
|
'created.');
|
|
|
|
worker.on('exit', function() {
|
|
assert.ok(!worker.isConnected(),
|
|
'After an event has been emitted, ' +
|
|
'isDead should return true');
|
|
});
|
|
|
|
worker.on('message', function(msg) {
|
|
if (msg === 'readyToDie') {
|
|
worker.kill();
|
|
}
|
|
});
|
|
|
|
} else if (cluster.isWorker) {
|
|
assert.ok(!cluster.worker.isDead(),
|
|
'isDead() should return false when called from within a worker');
|
|
process.send('readyToDie');
|
|
}
|