File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
projects/igniteui-angular/src/lib/combo Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -3603,16 +3603,12 @@ describe('igxCombo', () => {
36033603 expect ( combo . valid ) . toEqual ( IgxInputState . INITIAL ) ;
36043604 expect ( combo . comboInput . valid ) . toEqual ( IgxInputState . INITIAL ) ;
36053605 } ) ) ;
3606-
3607- fit ( 'should mark the combo as touched and invalid when opened and the user clicks away' , fakeAsync ( ( ) => {
3606+ it ( 'should mark the combo as touched and invalid when opened and the user clicks away' , fakeAsync ( ( ) => {
36083607 // Access the NgModel for the testCombo
36093608 const ngModel = fixture . debugElement . query ( By . directive ( NgModel ) ) . injector . get ( NgModel ) ;
3610-
3611- // Initially, the combo should not be touched
36123609 expect ( combo . valid ) . toEqual ( IgxInputState . INITIAL ) ;
36133610 expect ( combo . comboInput . valid ) . toEqual ( IgxInputState . INITIAL ) ;
36143611 expect ( ngModel . touched ) . toBeFalse ( ) ;
3615-
36163612 combo . open ( ) ;
36173613 fixture . detectChanges ( ) ;
36183614
You can’t perform that action at this time.
0 commit comments