We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b186a7 commit a41473dCopy full SHA for a41473d
1 file changed
test/nuxt/a11y.spec.ts
@@ -58,6 +58,7 @@ import {
58
AppFooter,
59
AppHeader,
60
BuildEnvironment,
61
+ CallToAction,
62
CodeDirectoryListing,
63
CodeFileTree,
64
CodeMobileTreeDrawer,
@@ -1449,6 +1450,14 @@ describe('component accessibility audits', () => {
1449
1450
})
1451
1452
1453
+ describe('CallToAction', () => {
1454
+ it('should have no accessibility violations', async () => {
1455
+ const component = await mountSuspended(CallToAction)
1456
+ const results = await runAxe(component)
1457
+ expect(results.violations).toEqual([])
1458
+ })
1459
1460
+
1461
describe('CollapsibleSection', () => {
1462
it('should have no accessibility violations', async () => {
1463
const component = await mountSuspended(CollapsibleSection, {
0 commit comments