Skip to content

Commit

Permalink
Update test/parallel/test-child-process-bad-stdio.js
Browse files Browse the repository at this point in the history
Co-authored-by: Luigi Pinca <[email protected]>
  • Loading branch information
cjihrig and lpinca authored Feb 1, 2025
1 parent cf4c2b8 commit 6e37e40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/parallel/test-child-process-bad-stdio.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ const common = require('../common');
if (process.argv[2] === 'timeout') {
setTimeout(() => {}, common.platformTimeout(100));
return;
} else if (process.argv[2] === 'interval') {
}

if (process.argv[2] === 'interval') {
setInterval(() => {}, 10_000);
return;
}
Expand Down

0 comments on commit 6e37e40

Please sign in to comment.