Skip to content

Commit f1d7afa

Browse files
committed
fix(combo): edited combo component test
1 parent 49dedf2 commit f1d7afa

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

projects/igniteui-angular/src/lib/combo/combo.component.spec.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)