diff --git a/cypress/integration/app/teamflow.spec.ts b/cypress/integration/app/teamflow.spec.ts index 9e933b4325..3d6d6f7e6e 100644 --- a/cypress/integration/app/teamflow.spec.ts +++ b/cypress/integration/app/teamflow.spec.ts @@ -62,6 +62,11 @@ describe("Teams flow", () => { cy.findByText(/successfully deleted/i).should("be.visible"); + cy.visit("/settings/teams"); + // Allow rendering to settle + // TODO this might represent a bug in the React code. + cy.wait(100); // eslint-disable-line cypress/no-unnecessary-waiting + cy.findByText(/mystic/i).should("not.exist"); }); });