Skip to content

Commit 0d879fb

Browse files
committed
Increasing timeouts of some tests in parallel test-suite.
1 parent d237aa7 commit 0d879fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

graal-nodejs/test/parallel/test-timers-unrefd-interval-still-fires.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Regression test for https://github.com/nodejs/node-v0.x-archive/issues/8900.
33
const common = require('../common');
44

5-
const TEST_DURATION = common.platformTimeout(1000);
5+
const TEST_DURATION = common.platformTimeout(5000);
66
let N = 3;
77

88
const keepOpen =

graal-nodejs/test/parallel/test-worker-message-port-transfer-target.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ port2.postMessage(null, [port1, arrayBuf]);
1919
assert.strictEqual(arrayBuf.byteLength, 0);
2020

2121
setTimeout(common.mustNotCall('The communication channel is still open'),
22-
common.platformTimeout(1000)).unref();
22+
common.platformTimeout(5000)).unref();

0 commit comments

Comments
 (0)