Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions test/parallel/test-cluster-server-restart-none.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@ if (cluster.isMaster) {
worker1.on('listening', common.mustCall(() => {
const worker2 = cluster.fork();
worker2.on('exit', (code, signal) => {
assert.strictEqual(code, 0, 'worker2 did not exit normally');
assert.strictEqual(signal, null, 'worker2 did not exit normally');
assert.strictEqual(code, 0, `worker2 did not exit normally. exited with\
code ${code}`);
assert.strictEqual(signal, null, `worker2 did not exit normally. exited\
with signal ${signal}`);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The basic change is good but we try to avoid using multi-line template literals in core. This can be improved by...

      assert.strictEqual(code, 0, 
                         'worker2 did not exit normally.' +
                         `exited with code ${code}`);
      assert.strictEqual(signal, null,
                         'worker2 did not exit normally. ' +
                         `exited with signal ${signal}`);

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That can be fixed on landing tho :-)

worker1.disconnect();
});
}));

worker1.on('exit', common.mustCall((code, signal) => {
assert.strictEqual(code, 0, 'worker1 did not exit normally');
assert.strictEqual(signal, null, 'worker1 did not exit normally');
assert.strictEqual(code, 0, `worker1 did not exit normally. exited with\
code ${code}`);
assert.strictEqual(signal, null, `worker1 did not exit normally. exited\
with signal ${signal}`);
}));
} else {
const net = require('net');
Expand Down