Skip to content

Commit e84b59c

Browse files
test: fix copy-paste error with test props
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 54b044b commit e84b59c

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
@@ -310,7 +310,7 @@ describe('component accessibility audits', () => {
310310

311311
it('should have no accessibility violations as primary button', async () => {
312312
const component = await mountSuspended(ButtonBase, {
313-
props: { disabled: true, variant: 'primary' },
313+
props: { variant: 'primary' },
314314
slots: { default: 'Button content' },
315315
})
316316
const results = await runAxe(component)
@@ -319,7 +319,7 @@ describe('component accessibility audits', () => {
319319

320320
it('should have no accessibility violations as tag', async () => {
321321
const component = await mountSuspended(ButtonBase, {
322-
props: { disabled: true, variant: 'tag' },
322+
props: { variant: 'tag' },
323323
slots: { default: 'Button content' },
324324
})
325325
const results = await runAxe(component)

0 commit comments

Comments
 (0)