Skip to content

Commit d7f1417

Browse files
Ivan KitanovIvan Kitanov
authored andcommitted
chore(combo): Fixing aria-activedescendant test
1 parent 52dc0fd commit d7f1417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ describe('igxCombo', () => {
10731073

10741074
const list = fixture.debugElement.query(By.css(`.${CSS_CLASS_CONTENT}`));
10751075
expect(list.nativeElement.getAttribute('aria-multiselectable')).toEqual('true');
1076-
expect(list.nativeElement.getAttribute('aria-activedescendant')).toEqual('');
1076+
expect(list.nativeElement.getAttribute('aria-activedescendant')).toEqual(null);
10771077

10781078
UIInteractions.triggerEventHandlerKeyDown('ArrowDown', list);
10791079
tick();

0 commit comments

Comments
 (0)