[CI > Test] Fix infinite running test

pull/24/head
Oj 2 years ago
parent ce45959a64
commit 91d4294a6a

@ -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();
Loading…
Cancel
Save