diff --git a/core/src/components/item/test/a11y/item.e2e.ts b/core/src/components/item/test/a11y/item.e2e.ts index 4b1cc609c0d..db936bf64bf 100644 --- a/core/src/components/item/test/a11y/item.e2e.ts +++ b/core/src/components/item/test/a11y/item.e2e.ts @@ -7,10 +7,7 @@ configs({ directions: ['ltr'] }).forEach(({ config, screenshot, title }) => { test('should not have accessibility violations', async ({ page }) => { await page.goto(`/src/components/item/test/a11y`, config); - const results = await new AxeBuilder({ page }) - // TODO(FW-404): Re-enable rule once select is updated to avoid nested-interactive - .disableRules('nested-interactive') - .analyze(); + const results = await new AxeBuilder({ page }).analyze(); expect(results.violations).toEqual([]); });