Skip to content

Commit

Permalink
Bump up job run status waiting time
Browse files Browse the repository at this point in the history
  • Loading branch information
fruttasecca committed Oct 13, 2021
1 parent 4b04344 commit 9a09436
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/cypress/integration/jobs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ describe("jobs", () => {
waitForJobRunsStatus(
"Success",
stepPar.length * pipePar.length,
50,
100,
() => verifyJobRunsParameters("dump-env-params", expectedRunsParams)
);
waitForJobStatus(JOB_STATUS.SUCCESS);
Expand Down
2 changes: 1 addition & 1 deletion cypress/cypress/support/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export function waitForJobStatus(expected: string, retries = 100) {
export function waitForJobRunsStatus(
expectedStatus: string,
expectedNumberOfRuns: number,
retries = 50,
retries = 100,
callback?: Function
) {
cy.location("pathname").should("eq", "/job");
Expand Down

0 comments on commit 9a09436

Please sign in to comment.