Skip to content

Commit ed426b6

Browse files
committed
fix create describe/it re: tags
1 parent fd3034c commit ed426b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/context/reducers/accTestCaseReducer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ const createDescribeBlock = (describeId: string) => {
4646
return {
4747
id: describeId,
4848
text: 'Component is accessible according to all standards enforced by axe-core.',
49-
standardTag: '',
49+
standardTag: 'none',
5050
};
5151
};
5252

5353
const createItStatement = (describeId: string, itId: string) => ({
5454
id: itId,
5555
describeId,
5656
text: 'Component is accessible regarding all axe-core categories.',
57-
catTag: '',
57+
catTag: 'none',
5858
});
5959

6060
/* ------------------------- Accessibility Test Case Reducer ------------------------ */

0 commit comments

Comments
 (0)