From 25ca51a41c67d44cb1abaab963094a7b60dc19d7 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 20 Nov 2023 09:58:09 +0000 Subject: [PATCH] Disable axe check which only fails in Chrome (#11909) Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- cypress/e2e/spaces/spaces.spec.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cypress/e2e/spaces/spaces.spec.ts b/cypress/e2e/spaces/spaces.spec.ts index c27d6e5ad6..6f59e74401 100644 --- a/cypress/e2e/spaces/spaces.spec.ts +++ b/cypress/e2e/spaces/spaces.spec.ts @@ -294,6 +294,11 @@ describe("Spaces", () => { "nested-interactive": { enabled: false, }, + // Disable this check as it wrongly triggers on the room list container which has + // roving tab index elements with automatic scrolling + "scrollable-region-focusable": { + enabled: false, + }, }, }; cy.checkA11y(undefined, axeOptions);