mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

- updated vars to const - add common.mustCall() to setup callback PR-URL: https://github.com/nodejs/node/pull/9960 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
19 lines
592 B
JavaScript
19 lines
592 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
|
|
setTimeout(common.fail.bind(assert, 'setup not emitted'), 1000).unref();
|
|
|
|
cluster.on('setup', common.mustCall(function() {
|
|
var clusterArgs = cluster.settings.args;
|
|
var realArgs = process.argv;
|
|
assert.strictEqual(clusterArgs[clusterArgs.length - 1],
|
|
realArgs[realArgs.length - 1]);
|
|
}));
|
|
|
|
assert.notStrictEqual(process.argv[process.argv.length - 1], 'OMG,OMG');
|
|
process.argv.push('OMG,OMG');
|
|
process.argv.push('OMG,OMG');
|
|
cluster.setupMaster();
|