Skip to content

Commit 795230a

Browse files
authored
Revert PR 1679 (#1682)
Signed-off-by: Nandini Chandra <[email protected]>
1 parent 65834df commit 795230a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cypress/e2e/models/migration/applicationinventory/application.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,10 @@ export class Application {
161161
const itemsPerPage = 100;
162162
if (forceReload) {
163163
cy.visit(Application.fullUrl, { timeout: 35 * SEC }).then((_) => {
164-
cy.get("h1", { timeout: 10 * SEC }).should("contain", applicationInventory);
164+
// Bug MTA-3812 Application Inventory page takes long to load
165+
// TODO: Wait of 10s to be reduced after above bug is fixed
166+
cy.wait(10 * SEC);
167+
cy.get("h1").should("contain", applicationInventory);
165168
selectItemsPerPage(itemsPerPage);
166169
});
167170
return;

0 commit comments

Comments
 (0)