@@ -9,18 +9,20 @@ import { runAcrossPages } from '@test/e2e/helpers/runAcrossPages'
99// https://github.com/dequelabs/axe-core/blob/develop/doc/rule-descriptions.md?plain=1
1010
1111/*
12- cat.aria: Rules related to Accessible Rich Internet Applications (ARIA) attributes and roles.
13- cat.color: Rules related to color contrast and meaning conveyed by color.
14- cat.controls: Rules for interactive controls, such as form elements and links.
15- cat.forms: Rules specifically for forms, form fields, and their labels.
16- cat.keyboard: Rules related to keyboard operability.
17- cat.links: Rules for links, including their names and destinations.
18- cat.name-role-value: Rules that check if an element has a name, role, and value that can be correctly interpreted by assistive technologies.
19- cat.semantics: Rules related to the semantic structure of a document, such as headings and landmarks.
20- cat.sensory-and-visual-cues: Rules that deal with information conveyed by sensory or visual characteristics.
21- cat.structure: Rules related to the document's overall structure, like the proper nesting of elements.
22- cat.tables: Rules for data tables, including headers and associations.
23- cat.text-alternatives: Rules for ensuring that text alternatives are provided for non-text content, such as images.
12+ const axeTags = [
13+ 'cat.aria' // Rules related to Accessible Rich Internet Applications (ARIA) attributes and roles.
14+ 'cat.color' // Rules related to color contrast and meaning conveyed by color.
15+ 'cat.controls' // Rules for interactive controls, such as form elements and links.
16+ 'cat.forms' // Rules specifically for forms, form fields, and their labels.
17+ 'cat.keyboard' // Rules related to keyboard operability.
18+ 'cat.links' // Rules for links, including their names and destinations.
19+ 'cat.name-role-value' // Rules that check if an element has a name, role, and value that can be correctly interpreted by assistive technologies.
20+ 'cat.semantics' // Rules related to the semantic structure of a document, such as headings and landmarks.
21+ 'cat.sensory-and-visual-cues' // Rules that deal with information conveyed by sensory or visual characteristics.
22+ 'cat.structure' // Rules related to the document's overall structure, like the proper nesting of elements.
23+ 'cat.tables' // Rules for data tables, including headers and associations.
24+ 'cat.text-alternatives' // Rules for ensuring that text alternatives are provided for non-text content, such as images.
25+ ]
2426*/
2527
2628describe ( 'WCAG Compliance' , ( ) => {
0 commit comments