[CI > Test] Fix infinite running test

This commit is contained in:
Ducko 2022-02-01 21:53:44 +00:00
parent ce45959a64
commit 91d4294a6a
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ const test = () => {
if (anyOutput) return;
console.log('detected no output in 5s, retrying...');
proc.kill();
test();
}, 5000);
};
while (true) test();
test();