From eec02321f5b7ab680ff03f1ee26e8ce181983069 Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Fri, 26 Nov 2021 11:42:37 +0100 Subject: [PATCH] fix cypress tests --- packages/builder/cypress/integration/createAutomation.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/builder/cypress/integration/createAutomation.spec.js b/packages/builder/cypress/integration/createAutomation.spec.js index afd405d5ab..6ff013cd7a 100644 --- a/packages/builder/cypress/integration/createAutomation.spec.js +++ b/packages/builder/cypress/integration/createAutomation.spec.js @@ -12,7 +12,7 @@ context("Create a automation", () => { cy.get("[data-cy='new-screen'] > .spectrum-Icon").click() cy.get(".modal-inner-wrapper").within(() => { cy.get("input").type("Add Row") - cy.contains("Row Created").click() + cy.contains("Row Created").click({ force: true }) cy.wait(500) cy.get(".spectrum-Button--cta").click() })