File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
projects/igniteui-angular/src/lib/chips Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -249,12 +249,12 @@ describe('IgxChip', () => {
249249 // tabIndex attribute has higher priority than tabIndex.
250250 const fourthTabChip = fix . debugElement . queryAll ( By . directive ( IgxChipComponent ) ) [ 7 ] ;
251251 expect ( fourthTabChip . nativeElement . getAttribute ( 'tabindex' ) ) . toBeFalsy ( ) ;
252- expect ( fourthTabChip . componentInstance . chipArea . nativeElement . getAttribute ( 'tabindex' ) ) . toEqual ( '4 ' ) ;
252+ expect ( fourthTabChip . componentInstance . chipArea . nativeElement . getAttribute ( 'tabindex' ) ) . toEqual ( '1 ' ) ;
253253
254254 // tabIndex attribute has higher priority than tabIndex input and chip being disabled.
255255 const fifthTabChip = fix . debugElement . queryAll ( By . directive ( IgxChipComponent ) ) [ 8 ] ;
256256 expect ( fifthTabChip . nativeElement . getAttribute ( 'tabindex' ) ) . toBeFalsy ( ) ;
257- expect ( fifthTabChip . componentInstance . chipArea . nativeElement . getAttribute ( 'tabindex' ) ) . toEqual ( '5 ' ) ;
257+ expect ( fifthTabChip . componentInstance . chipArea . nativeElement . getAttribute ( 'tabindex' ) ) . toEqual ( '1 ' ) ;
258258 } ) ;
259259 } ) ;
260260
You can’t perform that action at this time.
0 commit comments