We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a970344 commit d014744Copy full SHA for d014744
test/parallel/test-cli-eval-event.js
@@ -10,6 +10,6 @@ const child = spawn(process.execPath, ['-e', `
10
`]);
11
12
child.once('exit', common.mustCall(function(exitCode, signalCode) {
13
- assert.equal(exitCode, 0);
14
- assert.equal(signalCode, null);
+ assert.strictEqual(exitCode, 0);
+ assert.strictEqual(signalCode, null);
15
}));
0 commit comments