test: replacing assert message with template
PR-URL: https://github.com/nodejs/node/pull/15974 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
0d38e6d01f
commit
96eba098ef
@ -8,7 +8,7 @@ const cluster = require('cluster');
|
|||||||
|
|
||||||
if (cluster.isMaster) {
|
if (cluster.isMaster) {
|
||||||
cluster.on('exit', (worker, code) => {
|
cluster.on('exit', (worker, code) => {
|
||||||
assert.strictEqual(code, 0, 'worker exited with error');
|
assert.strictEqual(code, 0, `worker exited with code: ${code}, expected 0`);
|
||||||
});
|
});
|
||||||
|
|
||||||
return cluster.fork();
|
return cluster.fork();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user