Fix add comment to release PR with tests status (#2548)

This commit is contained in:
Karolina Rakoczy 2022-11-09 16:26:49 +01:00 committed by GitHub
parent 9d4c198140
commit 33cfd21a76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -164,7 +164,7 @@ async function waitForTestsToFinish(requestVariables) {
.then(response => {
if (response.runByBuildNumber.status === "RUNNING") {
setTimeout(async function() {
resolve(await waitForTestsToFinish(client, requestVariables));
resolve(await waitForTestsToFinish(requestVariables));
}, 10000);
} else {
resolve(response.runByBuildNumber);