@@ -3385,7 +3385,7 @@ describe('AnalyticalTable', () => {
33853385 useEffect ( ( ) => {
33863386 tableRef . current . scrollTo ( 520 ) ;
33873387 } , [ ] ) ;
3388- return < AnalyticalTable data = { generateMoreData ( 500 ) } columns = { columns } ref = { tableRef } /> ;
3388+ return < AnalyticalTable data = { generateMoreData ( 300 ) } columns = { columns } ref = { tableRef } /> ;
33893389 } ;
33903390 cy . mount ( < ScrollTo /> ) ;
33913391 cy . findByText ( 'Name-12' ) . should ( 'be.visible' ) ;
@@ -3396,7 +3396,7 @@ describe('AnalyticalTable', () => {
33963396 useEffect ( ( ) => {
33973397 tableRef . current . scrollToItem ( 12 , { align : 'start' } ) ;
33983398 } , [ ] ) ;
3399- return < AnalyticalTable data = { generateMoreData ( 500 ) } columns = { columns } ref = { tableRef } /> ;
3399+ return < AnalyticalTable data = { generateMoreData ( 300 ) } columns = { columns } ref = { tableRef } /> ;
34003400 } ;
34013401 cy . mount ( < ScrollToItem /> ) ;
34023402 cy . findByText ( 'Name-12' ) . should ( 'be.visible' ) ;
@@ -3409,7 +3409,7 @@ describe('AnalyticalTable', () => {
34093409 } , [ ] ) ;
34103410 return (
34113411 < AnalyticalTable
3412- data = { generateMoreData ( 500 ) }
3412+ data = { generateMoreData ( 300 ) }
34133413 columns = { [
34143414 ...columns ,
34153415 ...new Array ( 100 ) . fill ( '' ) . map ( ( _ , index ) => ( { id : `${ index } ` , Header : ( ) => index } ) ) ,
@@ -3428,7 +3428,7 @@ describe('AnalyticalTable', () => {
34283428 } , [ ] ) ;
34293429 return (
34303430 < AnalyticalTable
3431- data = { generateMoreData ( 500 ) }
3431+ data = { generateMoreData ( 300 ) }
34323432 columns = { new Array ( 100 ) . fill ( '' ) . map ( ( _ , index ) => ( { id : `${ index } ` , Header : ( ) => index } ) ) }
34333433 ref = { tableRef }
34343434 />
0 commit comments