Skip to content

Commit

Permalink
fix: finish e2e test organization creation flow on gno
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelVallenet committed Oct 15, 2024
1 parent 7c60018 commit e4f4b20
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { connectWallet, resetChain } from "./lib";

describe("Create a dao flow", () => {
describe("Create an organization flow", () => {
it("works", () => {

Check failure on line 5 in cypress/e2e/organization-creation.cy.ts

View workflow job for this annotation

GitHub Actions / lint-and-build

Delete `⏎`
resetChain();
Expand Down Expand Up @@ -30,5 +30,7 @@ describe("Create a dao flow", () => {
cy.contains("Next: Set tokens or members").click();
cy.get('[data-testid="member-settings-next"]').click();
cy.contains("Confirm & Launch the Organization").click();

cy.contains('Get Started', { timeout: 10000 }).should('exist');

Check failure on line 34 in cypress/e2e/organization-creation.cy.ts

View workflow job for this annotation

GitHub Actions / lint-and-build

Replace `'Get·Started',·{·timeout:·10000·}).should('exist'` with `"Get·Started",·{·timeout:·10000·}).should("exist"`
});
});

0 comments on commit e4f4b20

Please sign in to comment.