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 4514fd7 commit b87ee26Copy full SHA for b87ee26
test/parallel/test-domain-with-abort-on-uncaught-exception.js
@@ -125,15 +125,15 @@ if (process.argv[2] === 'child') {
125
} else {
126
// By default, uncaught exceptions make node exit with an exit
127
// code of 7.
128
- assert.equal(exitCode, 7);
129
- assert.equal(signal, null);
+ assert.strictEqual(exitCode, 7);
+ assert.strictEqual(signal, null);
130
}
131
132
// If the top-level domain's error handler does not throw,
133
// the process must exit gracefully, whether or not
134
// --abort_on_uncaught_exception was passed on the command line
135
- assert.equal(exitCode, 0);
136
+ assert.strictEqual(exitCode, 0);
137
138
});
139
0 commit comments