We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca1411 commit b6a507dCopy full SHA for b6a507d
1 file changed
cypress/e2e/admin-sidebar.cy.ts
@@ -1,5 +1,4 @@
1
import { testA11y } from 'cypress/support/utils';
2
-import { Options } from 'cypress-axe';
3
4
describe('Admin Sidebar', () => {
5
beforeEach(() => {
@@ -16,13 +15,6 @@ describe('Admin Sidebar', () => {
16
15
cy.get('ds-expandable-admin-sidebar-section').click({ multiple: true });
17
18
// Analyze <ds-admin-sidebar> for accessibility
19
- testA11y('ds-admin-sidebar',
20
- {
21
- rules: {
22
- // Currently all expandable sections have nested interactive elements
23
- // See https://github.com/DSpace/dspace-angular/issues/2178
24
- 'nested-interactive': { enabled: false },
25
- },
26
- } as Options);
+ testA11y('ds-admin-sidebar');
27
});
28
0 commit comments