Skip to content

Commit

Permalink
Signed-off-by: Karishma Punwatkar <[email protected]>
Browse files Browse the repository at this point in the history
	modified:   cypress/e2e/models/migration/applicationinventory/analysis.ts
	modified:   cypress/e2e/models/migration/applicationinventory/application.ts
  • Loading branch information
kpunwatk committed Nov 21, 2024
1 parent a26c34d commit bc3ad82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/models/migration/applicationinventory/analysis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,11 @@ export class Analysis extends Application {
}

public verifyEffort(effort: number) {
cy.get(tdTag)
cy.get(tdTag, { timeout: 30 * SEC })
.contains(this.name)
.closest(trTag)
.within(() => {
cy.get(effortColumn).should("contain", `${effort}`);
cy.get(effortColumn, { timeout: 30 * SEC }).should("contain", `${effort}`);
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export class Application {
cy.visit(Application.fullUrl, { timeout: 35 * SEC }).then((_) => {
// Bug MTA-3812 Application Inventory page takes long to load
// Timeout time of 100s to be reduced after above bug is fixed
cy.get("h1", { timeout: 100 * SEC }).should("contain", applicationInventory);
cy.get("h1", { timeout: 200 * SEC }).should("contain", applicationInventory);
selectItemsPerPage(itemsPerPage);
});
return;
Expand Down

0 comments on commit bc3ad82

Please sign in to comment.