We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd3034c commit ed426b6Copy full SHA for ed426b6
src/context/reducers/accTestCaseReducer.ts
@@ -46,15 +46,15 @@ const createDescribeBlock = (describeId: string) => {
46
return {
47
id: describeId,
48
text: 'Component is accessible according to all standards enforced by axe-core.',
49
- standardTag: '',
+ standardTag: 'none',
50
};
51
52
53
const createItStatement = (describeId: string, itId: string) => ({
54
id: itId,
55
describeId,
56
text: 'Component is accessible regarding all axe-core categories.',
57
- catTag: '',
+ catTag: 'none',
58
});
59
60
/* ------------------------- Accessibility Test Case Reducer ------------------------ */
0 commit comments