We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7170fc9 commit 8457895Copy full SHA for 8457895
test/known_issues/test-vm-timeout-escape-nexttick.js
@@ -13,9 +13,9 @@ const NS_PER_MS = 1000000n;
13
const hrtime = process.hrtime.bigint;
14
const nextTick = process.nextTick;
15
16
-const waitDuration = common.platformTimeout(100n);
+const waitDuration = common.platformTimeout(150n);
17
18
-function loop() {
+function loop(a) {
19
const start = hrtime();
20
while (1) {
21
const current = hrtime();
@@ -38,7 +38,7 @@ for (let i = 0; i < 4; i++) {
38
nextTick,
39
loop,
40
},
41
- { timeout: common.platformTimeout(10) },
+ { timeout: common.platformTimeout(50) },
42
);
43
}, {
44
code: 'ERR_SCRIPT_EXECUTION_TIMEOUT',
0 commit comments