From ba201935a8a52372dcca590a8c82b86a2e985277 Mon Sep 17 00:00:00 2001 From: shelly_goldblit Date: Sun, 31 Dec 2023 11:08:06 +0200 Subject: [PATCH] fix failing test --- cypress/e2e/accessibility.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/accessibility.cy.ts b/cypress/e2e/accessibility.cy.ts index 35c7c528..ca43ab70 100644 --- a/cypress/e2e/accessibility.cy.ts +++ b/cypress/e2e/accessibility.cy.ts @@ -14,7 +14,7 @@ describe("accessibility", () => { const selector = "root:skip:layer-list"; then(get.elementByTestId(selector)).shouldExist(); when.tab(); - then(get.skipTargetLayerList()).shouldBeFocused(); + then(get.elementByTestId(selector)).shouldBeFocused(); when.click(selector); then(get.skipTargetLayerList()).shouldBeFocused(); });