We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79c21ca commit a8824a0Copy full SHA for a8824a0
index.js
@@ -40,7 +40,7 @@ core.group('Execute Test', async () => {
40
let testResult = null;
41
let tries = 0;
42
while (
43
- (!testResult || testResult.status == 'pending') &&
+ (!testResult || testResult.status == 'pending' || testResult.status == 'started') &&
44
tries < MAX_TRIES // safety
45
) {
46
await sleep(WAIT_TIME);
0 commit comments