diff --git a/test/components/CommandPalette.spec.ts b/test/components/CommandPalette.spec.ts index cd2ef2aeb3..9584641fa9 100644 --- a/test/components/CommandPalette.spec.ts +++ b/test/components/CommandPalette.spec.ts @@ -149,15 +149,6 @@ describe('CommandPalette', () => { } }) - expect(await axe(wrapper.element, { - rules: { - // ARIA input fields must have an accessible name (aria-input-field-name)" - // Fix any of the following: - // aria-label attribute does not exist or is empty - // aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty - // Element has no title attribute - 'aria-input-field-name': { enabled: false } - } - })).toHaveNoViolations() + expect(await axe(wrapper.element)).toHaveNoViolations() }) })