From d36024f42da166ce6d70013827cf991504727b27 Mon Sep 17 00:00:00 2001 From: nstclair-cc <20171905+nstclair-cc@users.noreply.github.com> Date: Mon, 30 Sep 2024 15:42:03 -0700 Subject: [PATCH] fixed flaky text tile test --- v3/cypress/e2e/text.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v3/cypress/e2e/text.spec.ts b/v3/cypress/e2e/text.spec.ts index e4e4ebf47..544fba5b7 100644 --- a/v3/cypress/e2e/text.spec.ts +++ b/v3/cypress/e2e/text.spec.ts @@ -19,12 +19,15 @@ context("Text tile", () => { cy.log("Check update text title with undo/redo") // Undo title change + cy.wait(100) toolbar.getUndoTool().click() + cy.wait(100) c.getComponentTitle(kTextTileTestId).should("have.text", textDefaultTitle) // Redo title change toolbar.getRedoTool().should("be.enabled") toolbar.getRedoTool().click() + cy.wait(100) c.getComponentTitle(kTextTileTestId).should("have.text", newTextTileName) }) it("close text tile from close button with undo/redo", () => {