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 663b45d commit cea2c37Copy full SHA for cea2c37
src/utils/poller.ts
@@ -53,6 +53,7 @@ export default class Poller {
53
}
54
55
public async check(id: number, spinner: ora.Ora): Promise<IPollResponse> {
56
+ this.runner.onReady();
57
return new Promise((resolve, reject) => {
58
this.intervalId = setInterval(async () => {
59
const response = await this.getApiResponse(id);
@@ -107,8 +108,6 @@ export default class Poller {
107
108
log.info(`Cypress Job started.
109
View results on https://testingbot.com/members/builds/${response.build_id}`);
110
-
111
- this.runner.onReady();
112
113
114
this.retryNumber += 1;
0 commit comments