diff --git a/cypress/e2e/store-settings.cy.ts b/cypress/e2e/store-settings.cy.ts index 06ee4e5..7116762 100644 --- a/cypress/e2e/store-settings.cy.ts +++ b/cypress/e2e/store-settings.cy.ts @@ -48,7 +48,7 @@ describe("Store Settings", () => { cy.get('[data-cy="save-store-details"]').should("be.disabled"); - cy.wait(8000); + cy.wait(10000); cy.get('[data-cy="invalid-err"]').should("exist"); }); @@ -63,7 +63,7 @@ describe("Store Settings", () => { }); }); - cy.wait(10000); + cy.wait(15000); cy.get('[data-cy="store-name-input"]') .should("exist") @@ -84,7 +84,7 @@ describe("Store Settings", () => { cy.get('[data-cy="save-store-details"]').should("be.disabled"); - cy.wait(10000); + cy.wait(15000); cy.get('[data-cy="invalid-err"]').should("not.exist"); }); diff --git a/cypress/e2e/store.cy.ts b/cypress/e2e/store.cy.ts index 33b9b1c..be8cea4 100644 --- a/cypress/e2e/store.cy.ts +++ b/cypress/e2e/store.cy.ts @@ -90,7 +90,7 @@ describe("Store Form", () => { cy.get('[data-cy="store-submit-btn"]').should("contain", "Create").click(); //wait for API - cy.wait(10000); + cy.wait(15000); cy.get('[data-cy="create-store-err"]').should("exist"); }); @@ -116,7 +116,7 @@ describe("Store Form", () => { cy.get('[data-cy="store-submit-btn"]').should("contain", "Create").click(); //wait for API - cy.wait(10000); + cy.wait(15000); cy.get('[data-cy="create-store-err"]').should("exist"); });