Skip to content

Commit c9b0a72

Browse files
Remove feature-flag and extra @Aat (#5638)
* Remove feature-flag and extra @Aat * add skip
1 parent 9b92042 commit c9b0a72

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

e2e/components/Axe.test.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const SKIPPED_TESTS = [
1313
'components-treeview-features--contain-intrinsic-size',
1414
'components-flash-features--with-icon-action-dismiss', // TODO: Remove once color-contrast issues have been resolved
1515
'components-flash-features--with-icon-and-action', // TODO: Remove once color-contrast issues have been resolved
16+
'components-filteredactionlist--default',
1617
]
1718

1819
type Component = {
@@ -21,7 +22,7 @@ type Component = {
2122

2223
const {entries} = componentsConfig
2324

24-
test.describe('@aat', () => {
25+
test.describe('Axe tests', () => {
2526
for (const [id, entry] of Object.entries(entries as Record<string, Component>)) {
2627
if (SKIPPED_TESTS.includes(id)) {
2728
continue
@@ -35,7 +36,7 @@ test.describe('@aat', () => {
3536
test.describe(id, () => {
3637
for (const theme of themes) {
3738
test.describe(theme, () => {
38-
test(`${cleanedName} @aat`, async ({page}) => {
39+
test(`@aat ${cleanedName}`, async ({page}) => {
3940
await visit(page, {
4041
id,
4142
globals: {

packages/react/src/FilteredActionList/FilteredActionList.stories.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {ThemeProvider} from '..'
44
import {FilteredActionList} from '../FilteredActionList'
55
import BaseStyles from '../BaseStyles'
66
import Box from '../Box'
7-
import {FeatureFlags} from '../FeatureFlags'
87

98
const meta: Meta = {
109
title: 'Components/FilteredActionList',
@@ -58,7 +57,7 @@ export function Default(): JSX.Element {
5857
const filteredItems = items.filter(item => item.text.toLowerCase().startsWith(filter.toLowerCase()))
5958

6059
return (
61-
<FeatureFlags flags={{primer_react_select_panel_with_modern_action_list: true}}>
60+
<>
6261
<h1>Filtered Action List</h1>
6362
<div>Please select labels that describe your issue:</div>
6463
<FilteredActionList
@@ -67,6 +66,6 @@ export function Default(): JSX.Element {
6766
onFilterChange={setFilter}
6867
sx={{border: '1px solid', padding: '8px'}}
6968
/>
70-
</FeatureFlags>
69+
</>
7170
)
7271
}

0 commit comments

Comments
 (0)