We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ea3275 commit c90b056Copy full SHA for c90b056
1 file changed
cypress/e2e/community-list.cy.ts
@@ -12,6 +12,13 @@ describe('Community List Page', () => {
12
cy.get('[data-test="expand-button"]').click({ multiple: true });
13
14
// Analyze <ds-community-list-page> for accessibility issues
15
- testA11y('ds-community-list-page');
+ testA11y('ds-community-list-page', {
16
+ rules: {
17
+ // When expanding a cdk node on the community-list page, the 'aria-posinset' property becomes 0.
18
+ // 0 is not a valid value for 'aria-posinset' so the test fails.
19
+ // see https://github.com/DSpace/dspace-angular/issues/4068
20
+ 'aria-valid-attr-value': { enabled: false },
21
+ },
22
+ });
23
});
24
0 commit comments