File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
import { test } from '@playwright/test' ;
2
- import { isStencil , runA11yCheckerTest , runAxeCoreTest } from '../default.ts' ;
2
+ import { runA11yCheckerTest , runAxeCoreTest } from '../default.ts' ;
3
3
import { lvl3 } from '../fixtures/variants' ;
4
4
5
5
// We need to change tabs anyway, we disable the rules for now
6
6
// TODO: There might be an issue in our implementation of which elements get which roles
7
7
// So we disabled "aria-allowed-role" for now
8
8
const axeDisableRules = [ 'aria-allowed-role' ] ;
9
9
const aCheckerDisableRules = [ 'input_checkboxes_grouped' , 'aria_role_valid' ] ;
10
- // TODO: We skip this for now until mitosis output is correct
11
- const skipChecker = isStencil ( process . env . showcase ) ;
12
10
13
11
test . describe ( 'DBTabs' , ( ) => {
14
12
runAxeCoreTest ( { path : '04/tabs' , axeDisableRules } ) ;
@@ -20,7 +18,6 @@ test.describe('DBTabs', () => {
20
18
} ) ;
21
19
runA11yCheckerTest ( {
22
20
path : '04/tabs' ,
23
- aCheckerDisableRules,
24
- skipChecker
21
+ aCheckerDisableRules
25
22
} ) ;
26
23
} ) ;
You can’t perform that action at this time.
0 commit comments