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 2890f0d commit 457af87Copy full SHA for 457af87
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