@@ -598,8 +598,11 @@ describe.each([
598598
599599 expect ( response . hits . length ) . toEqual ( 0 )
600600
601+ // @ts -expect-error Property not existing on type
601602 expect ( response . limit ) . toBeUndefined ( )
603+ // @ts -expect-error Property not existing on type
602604 expect ( response . offset ) . toBeUndefined ( )
605+ // @ts -expect-error Property not existing on type
603606 expect ( response . estimatedTotalHits ) . toBeUndefined ( )
604607
605608 expect ( response . hitsPerPage ) . toEqual ( 0 )
@@ -619,8 +622,11 @@ describe.each([
619622 } )
620623
621624 expect ( response . hits . length ) . toEqual ( 1 )
625+ // @ts -expect-error Property not existing on type
622626 expect ( response . limit ) . toBeUndefined ( )
627+ // @ts -expect-error Property not existing on type
623628 expect ( response . offset ) . toBeUndefined ( )
629+ // @ts -expect-error Property not existing on type
624630 expect ( response . estimatedTotalHits ) . toBeUndefined ( )
625631 expect ( response . hitsPerPage ) . toEqual ( 1 )
626632 expect ( response . page ) . toEqual ( 1 )
@@ -638,8 +644,11 @@ describe.each([
638644 } )
639645
640646 expect ( response . hits . length ) . toEqual ( 1 )
647+ // @ts -expect-error Property not existing on type
641648 expect ( response . limit ) . toBeUndefined ( )
649+ // @ts -expect-error Property not existing on type
642650 expect ( response . offset ) . toBeUndefined ( )
651+ // @ts -expect-error Property not existing on type
643652 expect ( response . estimatedTotalHits ) . toBeUndefined ( )
644653 expect ( response . hitsPerPage ) . toEqual ( 1 )
645654 expect ( response . page ) . toEqual ( 1 )
@@ -657,8 +666,11 @@ describe.each([
657666 } )
658667
659668 expect ( response . hits . length ) . toEqual ( 1 )
669+ // @ts -expect-error Property not existing on type
660670 expect ( response . limit ) . toBeUndefined ( )
671+ // @ts -expect-error Property not existing on type
661672 expect ( response . offset ) . toBeUndefined ( )
673+ // @ts -expect-error Property not existing on type
662674 expect ( response . estimatedTotalHits ) . toBeUndefined ( )
663675 expect ( response . page ) . toEqual ( 1 )
664676 expect ( response . hitsPerPage ) . toEqual ( 1 )
0 commit comments