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 8264a22 commit 3c78fb5Copy full SHA for 3c78fb5
test/parallel/test-domain-exit-dispose.js
@@ -26,7 +26,7 @@ function err() {
26
console.error('This should not happen.');
27
disposalFailed = true;
28
process.exit(1);
29
- });
+ }, 0);
30
31
// this function doesn't exist, and throws an error as a result.
32
err3(); // eslint-disable-line no-undef
@@ -41,7 +41,7 @@ function err() {
41
}
42
43
process.on('exit', function() {
44
- assert.equal(a, 10);
45
- assert.equal(disposalFailed, false);
+ assert.strictEqual(a, 10);
+ assert.strictEqual(disposalFailed, false);
46
console.log('ok');
47
});
0 commit comments