From 6c7ce804d916c9919afa3425eaec4a7f62519f86 Mon Sep 17 00:00:00 2001 From: Nicolas Merget <104347736+nmerget@users.noreply.github.com> Date: Mon, 13 May 2024 08:37:01 +0200 Subject: [PATCH] Update packages/components/src/components/tabs/tabs.spec.tsx Co-authored-by: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> --- packages/components/src/components/tabs/tabs.spec.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/src/components/tabs/tabs.spec.tsx b/packages/components/src/components/tabs/tabs.spec.tsx index 24e7c548e44..2af182a9f61 100644 --- a/packages/components/src/components/tabs/tabs.spec.tsx +++ b/packages/components/src/components/tabs/tabs.spec.tsx @@ -55,8 +55,8 @@ const testA11y = () => { test('should not have A11y issues', async ({ page, mount }) => { await mount(comp); const accessibilityScanResults = await new AxeBuilder({ page }) - // TODO: There might be an issue in axe-core: https://github.com/dequelabs/axe-core/issues/4431 - // So we disabled "aria-allowed-role" + // TODO: There might be an issue in our implementation of which elements get which roles + // So we disabled "aria-allowed-role" for now .include('.db-tabs') .disableRules(['aria-allowed-role']) .analyze();