Skip to content

Commit

Permalink
fix: first visit timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz committed May 28, 2024
1 parent 2b92fd6 commit 73873a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/home_page.cy.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
describe("The Home Page", () => {
it("successfully loads", () => {
cy.visit("http://localhost:8081", {
timeout: 120000,
timeout: 300000,
});
});
});
2 changes: 1 addition & 1 deletion cypress/e2e/projects-contractor.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe("Contractor proposer full flow", () => {
const judgeAddr = "g1nyz430dsujj56ygllcaujkzagz54v0l6yusspy";

cy.visit("http://localhost:8081/projects?network=gno-dev", {
timeout: 120000,
timeout: 300000,
});

cy.contains("Create a Project").click();
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/projects-funder.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe("Funder proposer full flow", () => {
const judgeAddr = "g1nyz430dsujj56ygllcaujkzagz54v0l6yusspy";

cy.visit("http://localhost:8081/projects?network=gno-dev", {
timeout: 120000,
timeout: 300000,
});

cy.contains("Create a Project").click();
Expand Down

0 comments on commit 73873a3

Please sign in to comment.