@@ -1613,7 +1613,7 @@ describe('component accessibility audits', () => {
16131613 it ( 'should have no accessibility violations with 2 columns' , async ( ) => {
16141614 const component = await mountSuspended ( CompareComparisonGrid , {
16151615 props : {
1616- columns : [ { header : 'vue' } , { header : 'react' } ] ,
1616+ columns : [ { name : 'vue' } , { name : 'react' } ] ,
16171617 } ,
16181618 slots : {
16191619 default : '<div>Grid content</div>' ,
@@ -1626,7 +1626,7 @@ describe('component accessibility audits', () => {
16261626 it ( 'should have no accessibility violations with 3 columns' , async ( ) => {
16271627 const component = await mountSuspended ( CompareComparisonGrid , {
16281628 props : {
1629- columns : [ { header : 'vue' } , { header : 'react' } , { header : 'angular' } ] ,
1629+ columns : [ { name : 'vue' } , { name : 'react' } , { name : 'angular' } ] ,
16301630 } ,
16311631 slots : {
16321632 default : '<div>Grid content</div>' ,
@@ -1639,7 +1639,7 @@ describe('component accessibility audits', () => {
16391639 it ( 'should have no accessibility violations with no-dependency column' , async ( ) => {
16401640 const component = await mountSuspended ( CompareComparisonGrid , {
16411641 props : {
1642- columns : [ { header : 'vue' } , { header : 'react' } ] ,
1642+ columns : [ { name : 'vue' } , { name : 'react' } ] ,
16431643 showNoDependency : true ,
16441644 } ,
16451645 slots : {
0 commit comments