Skip to content

Commit ea1f799

Browse files
committed
test(combo): fix failing test #7455
1 parent 5656b1e commit ea1f799

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ describe('igxCombo', () => {
638638
expect(combo.type).toEqual('box');
639639
expect(combo.role).toEqual('combobox');
640640
});
641-
xit('should apply all appropriate classes on combo initialization', () => {
641+
it('should apply all appropriate classes on combo initialization', () => {
642642
const comboWrapper = fixture.nativeElement.querySelector(CSS_CLASS_COMBO);
643643
expect(comboWrapper).not.toBeNull();
644644
expect(comboWrapper.attributes.getNamedItem('ng-reflect-placeholder').nodeValue).toEqual('Location');
@@ -681,7 +681,7 @@ describe('igxCombo', () => {
681681
expect(dropDownButton.classList.contains(CSS_CLASS_TOGGLEBUTTON)).toBeTruthy();
682682
expect(dropDownButton.childElementCount).toEqual(1);
683683

684-
const inputGroupBorder = inputGroupWrapper.children[1];
684+
const inputGroupBorder = inputGroupElement.children[1];
685685
expect(inputGroupBorder.classList.contains(CSS_CLASS_INPUTGROUP_BORDER)).toBeTruthy();
686686
expect(inputGroupBorder.childElementCount).toEqual(0);
687687

0 commit comments

Comments
 (0)