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 e326bb0 commit 920d30dCopy full SHA for 920d30d
test/nuxt/a11y.spec.ts
@@ -141,6 +141,7 @@ import {
141
BlueskyPostEmbed,
142
BuildEnvironment,
143
ButtonBase,
144
+ LandingLogo,
145
LinkBase,
146
CallToAction,
147
ChartPatternSlot,
@@ -331,6 +332,14 @@ describe('component accessibility audits', () => {
331
332
})
333
334
335
+ describe('LandingLogo', () => {
336
+ it('should have no accessibility violations', async () => {
337
+ const component = await mountSuspended(LandingLogo)
338
+ const results = await runAxe(component)
339
+ expect(results.violations).toEqual([])
340
+ })
341
342
+
343
describe('AppFooter', () => {
344
it('should have no accessibility violations', async () => {
345
const component = await mountSuspended(AppFooter)
0 commit comments