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.
test/addons
1 parent ad5d0ad commit f425312Copy full SHA for f425312
test/addons/async-resource/test.js
@@ -26,7 +26,7 @@ async_hooks.createHook({
26
assert.strictEqual(triggerAsyncId, expectedTriggerId);
27
bindingUids.push(id);
28
}
29
- }),
+ }, 7),
30
31
before(id) {
32
if (bindingUids.includes(id)) before++;
test/addons/symlinked-module/submodule.js
@@ -10,4 +10,4 @@ module.exports.test = common.mustCall(function test(bindingDir) {
10
const mod = require(path.join(bindingDir, 'binding.node'));
11
assert.notStrictEqual(mod, null);
12
assert.strictEqual(mod.hello(), 'world');
13
-});
+}, require.main === module ? 0 : 2);
0 commit comments