Skip to content

Commit 78ad0c1

Browse files
Ivan KitanovIvan Kitanov
authored andcommitted
chore(combo): Fixing aria-activedescendant test
1 parent a65e95f commit 78ad0c1

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
@@ -1074,7 +1074,7 @@ describe('igxCombo', () => {
10741074

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

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

0 commit comments

Comments
 (0)