File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments