@@ -13,6 +13,7 @@ const SKIPPED_TESTS = [
13
13
'components-treeview-features--contain-intrinsic-size' ,
14
14
'components-flash-features--with-icon-action-dismiss' , // TODO: Remove once color-contrast issues have been resolved
15
15
'components-flash-features--with-icon-and-action' , // TODO: Remove once color-contrast issues have been resolved
16
+ 'components-filteredactionlist--default' ,
16
17
]
17
18
18
19
type Component = {
@@ -21,7 +22,7 @@ type Component = {
21
22
22
23
const { entries} = componentsConfig
23
24
24
- test . describe ( '@aat ' , ( ) => {
25
+ test . describe ( 'Axe tests ' , ( ) => {
25
26
for ( const [ id , entry ] of Object . entries ( entries as Record < string , Component > ) ) {
26
27
if ( SKIPPED_TESTS . includes ( id ) ) {
27
28
continue
@@ -35,7 +36,7 @@ test.describe('@aat', () => {
35
36
test . describe ( id , ( ) => {
36
37
for ( const theme of themes ) {
37
38
test . describe ( theme , ( ) => {
38
- test ( `${ cleanedName } @aat ` , async ( { page} ) => {
39
+ test ( `@aat ${ cleanedName } ` , async ( { page} ) => {
39
40
await visit ( page , {
40
41
id,
41
42
globals : {
0 commit comments