Skip to content

Commit 9eb9dfa

Browse files
committed
fix: a11y spec types
1 parent d17e00a commit 9eb9dfa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/nuxt/a11y.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -592,8 +592,8 @@ describe('component accessibility audits', () => {
592592
describe('PackageChartModal', () => {
593593
it('should have no accessibility violations when closed', async () => {
594594
const component = await mountSuspended(PackageChartModal, {
595-
props: { open: false },
596-
slots: { title: 'Downloads', default: '<div>Chart content</div>' },
595+
props: { open: false, title: 'Downloads' },
596+
slots: { default: '<div>Chart content</div>' },
597597
})
598598
const results = await runAxe(component)
599599
expect(results.violations).toEqual([])

0 commit comments

Comments
 (0)