Skip to content

Commit

Permalink
Fixed deployment issues
Browse files Browse the repository at this point in the history
  • Loading branch information
david emioma committed May 7, 2024
1 parent d3e2315 commit 745ed69
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/search.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe("Search For Products", () => {
"be.visible"
);

cy.wait(5000);
cy.wait(10000);
});

it("Search bar should exists", () => {
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/settings.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ describe("Settings", () => {
cy.get('[data-cy="go-to-store"]', { timeout: 15000 }).should("be.visible");

cy.visit(`${Cypress.env("public_url")}/settings`);

cy.wait(10000);
});

it("Settings form should be visible", () => {
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/size.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ describe("Size for store", () => {
"auth_storeId"
)}/sizes`
);

cy.wait(10000);
});

it("Create fail for invalid form", () => {
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/store-search.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ describe("Users Interactions", () => {
"include",
`/products/${Cypress.env("test_user_productId")}`
);

cy.wait(10000);
});

it("Ensure there is a store for a product", () => {
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/store.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ describe("Store Form", () => {
return false;
}
});

cy.wait(10000);
});

it("Open create store modal", () => {
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/user.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ describe("Users Interactions", () => {
"include",
`/products/${Cypress.env("test_user_productId")}`
);

cy.wait(10000);
});

it("Add to Cart Functions", () => {
Expand Down

0 comments on commit 745ed69

Please sign in to comment.