We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54417ab commit ac33454Copy full SHA for ac33454
1 file changed
cypress/e2e/item-edit.cy.ts
@@ -34,7 +34,16 @@ describe('Edit Item > Edit Metadata tab', () => {
34
});
35
36
// Analyze <ds-edit-item-page> for accessibility issues
37
- testA11y('ds-edit-item-page');
+ testA11y('ds-edit-item-page',
38
+ {
39
+ rules: {
40
+ // Disable flakey "aria-required-children" test. While this test passes when run locally,
41
+ // in GitHub CI it will return random failures roughly 1/3 of the time saying that the
42
+ // "tablist" doesn't contain required "tab" elements, even though they do exist.
43
+ 'aria-required-children': { enabled: false },
44
+ },
45
+ } as Options,
46
+ );
47
48
49
0 commit comments