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 f248c67 commit 8ceca4aCopy full SHA for 8ceca4a
test/parallel/test-exception-handler.js
@@ -6,12 +6,12 @@ var MESSAGE = 'catch me if you can';
6
7
process.on('uncaughtException', common.mustCall(function(e) {
8
console.log('uncaught exception! 1');
9
- assert.equal(MESSAGE, e.message);
+ assert.strictEqual(MESSAGE, e.message);
10
}));
11
12
13
console.log('uncaught exception! 2');
14
15
16
17
setTimeout(function() {
0 commit comments