From b6a507d2a299a62dcfe47829fa59503385b227b1 Mon Sep 17 00:00:00 2001 From: Tim Donohue Date: Mon, 10 Mar 2025 14:22:47 -0500 Subject: [PATCH] Reenable accessibility test which is now fixed --- cypress/e2e/admin-sidebar.cy.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/cypress/e2e/admin-sidebar.cy.ts b/cypress/e2e/admin-sidebar.cy.ts index 318bf2b27e..91e99b8f97 100644 --- a/cypress/e2e/admin-sidebar.cy.ts +++ b/cypress/e2e/admin-sidebar.cy.ts @@ -1,5 +1,4 @@ import { testA11y } from 'cypress/support/utils'; -import { Options } from 'cypress-axe'; describe('Admin Sidebar', () => { beforeEach(() => { @@ -16,13 +15,6 @@ describe('Admin Sidebar', () => { cy.get('ds-expandable-admin-sidebar-section').click({ multiple: true }); // Analyze for accessibility - testA11y('ds-admin-sidebar', - { - rules: { - // Currently all expandable sections have nested interactive elements - // See https://github.com/DSpace/dspace-angular/issues/2178 - 'nested-interactive': { enabled: false }, - }, - } as Options); + testA11y('ds-admin-sidebar'); }); });