-
-
-
-
Card content
' }, + }) + const results = await runAxe(component) + expect(results.violations).toEqual([]) + }) + + it('should have no accessibility violations with exact match highlight', async () => { + const component = await mountSuspended(BaseCard, { + props: { isExactMatch: true }, + slots: { default: 'Exact match content
' }, + }) + const results = await runAxe(component) + expect(results.violations).toEqual([]) + }) + }) + describe('TooltipApp', () => { it('should have no accessibility violations', async () => { const component = await mountSuspended(TooltipApp, { diff --git a/test/unit/a11y-component-coverage.spec.ts b/test/unit/a11y-component-coverage.spec.ts index 81d89fdfb6..129ff56504 100644 --- a/test/unit/a11y-component-coverage.spec.ts +++ b/test/unit/a11y-component-coverage.spec.ts @@ -41,6 +41,8 @@ const SKIPPED_COMPONENTS: Record