Skip to content

Commit e56a31c

Browse files
test: reduce timer interval to 250ms for faster execution
1 parent 9376a05 commit e56a31c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/sequential/test-watch-mode-worker.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if (common.isIBMi)
1515

1616
function restart(file, content = readFileSync(file)) {
1717
writeFileSync(file, content);
18-
const timer = setInterval(() => writeFileSync(file, content), common.platformTimeout(2500));
18+
const timer = setInterval(() => writeFileSync(file, content), common.platformTimeout(250));
1919
return () => clearInterval(timer);
2020
}
2121

0 commit comments

Comments
 (0)