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 d17e00a commit 9eb9dfaCopy full SHA for 9eb9dfa
1 file changed
test/nuxt/a11y.spec.ts
@@ -592,8 +592,8 @@ describe('component accessibility audits', () => {
592
describe('PackageChartModal', () => {
593
it('should have no accessibility violations when closed', async () => {
594
const component = await mountSuspended(PackageChartModal, {
595
- props: { open: false },
596
- slots: { title: 'Downloads', default: '<div>Chart content</div>' },
+ props: { open: false, title: 'Downloads' },
+ slots: { default: '<div>Chart content</div>' },
597
})
598
const results = await runAxe(component)
599
expect(results.violations).toEqual([])
0 commit comments