Skip to content

Commit 0873dc2

Browse files
authored
test(item): re-enable nested interactive check (#29399)
The ticket was marked as done, but this one was missed.
1 parent dc1172a commit 0873dc2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

core/src/components/item/test/a11y/item.e2e.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ configs({ directions: ['ltr'] }).forEach(({ config, screenshot, title }) => {
77
test('should not have accessibility violations', async ({ page }) => {
88
await page.goto(`/src/components/item/test/a11y`, config);
99

10-
const results = await new AxeBuilder({ page })
11-
// TODO(FW-404): Re-enable rule once select is updated to avoid nested-interactive
12-
.disableRules('nested-interactive')
13-
.analyze();
10+
const results = await new AxeBuilder({ page }).analyze();
1411
expect(results.violations).toEqual([]);
1512
});
1613

0 commit comments

Comments
 (0)