diff --git a/cypress/e2e/dao-creation.cy.ts b/cypress/e2e/organization-creation.cy.ts similarity index 90% rename from cypress/e2e/dao-creation.cy.ts rename to cypress/e2e/organization-creation.cy.ts index dabf87510..cb351aed8 100644 --- a/cypress/e2e/dao-creation.cy.ts +++ b/cypress/e2e/organization-creation.cy.ts @@ -1,6 +1,6 @@ import { connectWallet, resetChain } from "./lib"; -describe("Create a dao flow", () => { +describe("Create an organization flow", () => { it("works", () => { resetChain(); @@ -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'); }); });