Skip to content

Commit 410ba57

Browse files
committed
fix(*): fix failing test
1 parent dbb80e9 commit 410ba57

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,12 @@ describe('IgxSimpleCombo', () => {
193193
expect(combo.value).toEqual(selectedItem);
194194
});
195195
it('should emit owner on `opening` and `closing`', () => {
196+
const mockPlatformUtil = { KEYMAP: { TAB: 'Tab' } } as any;
196197
combo = new IgxSimpleComboComponent(
197198
elementRef,
198199
mockCdr, mockSelection as any,
199200
mockComboService,
200-
platformUtil,
201+
mockPlatformUtil,
201202
mockDocument,
202203
null,
203204
mockInjector

0 commit comments

Comments
 (0)