mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7a0e462f9f
Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
28 lines
615 B
JavaScript
28 lines
615 B
JavaScript
'use strict';
|
|
|
|
// Test should fail in Node.js 5.4.1 and pass in later versions.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
|
|
if (cluster.isMaster) {
|
|
cluster.on('exit', (worker, code) => {
|
|
assert.strictEqual(code, 0, 'worker exited with error');
|
|
});
|
|
|
|
return cluster.fork();
|
|
}
|
|
|
|
let eventFired = false;
|
|
|
|
cluster.worker.disconnect();
|
|
|
|
process.nextTick(common.mustCall(() => {
|
|
assert.strictEqual(eventFired, false, 'disconnect event should wait for ack');
|
|
}));
|
|
|
|
cluster.worker.on('disconnect', common.mustCall(() => {
|
|
eventFired = true;
|
|
}));
|