File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -568,13 +568,13 @@ describe('MatPaginator', () => {
568
568
569
569
expect ( select . disabled ) . toBe ( false ) ;
570
570
expect ( getPreviousButton ( fixture ) . hasAttribute ( 'disabled' ) ) . toBe ( false ) ;
571
- expect ( getPreviousButton ( fixture ) . hasAttribute ( 'tabindex' ) ) . toBe ( false ) ;
571
+ expect ( getPreviousButton ( fixture ) . getAttribute ( 'tabindex' ) ) . toBe ( '0' ) ;
572
572
expect ( getNextButton ( fixture ) . hasAttribute ( 'disabled' ) ) . toBe ( false ) ;
573
- expect ( getNextButton ( fixture ) . hasAttribute ( 'tabindex' ) ) . toBe ( false ) ;
573
+ expect ( getNextButton ( fixture ) . getAttribute ( 'tabindex' ) ) . toBe ( '0' ) ;
574
574
expect ( getFirstButton ( fixture ) . hasAttribute ( 'disabled' ) ) . toBe ( false ) ;
575
- expect ( getFirstButton ( fixture ) . hasAttribute ( 'tabindex' ) ) . toBe ( false ) ;
575
+ expect ( getFirstButton ( fixture ) . getAttribute ( 'tabindex' ) ) . toBe ( '0' ) ;
576
576
expect ( getLastButton ( fixture ) . hasAttribute ( 'disabled' ) ) . toBe ( false ) ;
577
- expect ( getLastButton ( fixture ) . hasAttribute ( 'tabindex' ) ) . toBe ( false ) ;
577
+ expect ( getLastButton ( fixture ) . getAttribute ( 'tabindex' ) ) . toBe ( '0' ) ;
578
578
579
579
fixture . componentInstance . disabled = true ;
580
580
fixture . changeDetectorRef . markForCheck ( ) ;
You can’t perform that action at this time.
0 commit comments