Skip to content

Commit 98da8a8

Browse files
committed
chore(*): bumping typescript to 3.8.3
1 parent 46d6c91 commit 98da8a8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"tslint": "~5.12.1",
118118
"typedoc": "^0.16.9",
119119
"typedoc-plugin-localization": "^2.2.1",
120-
"typescript": "~3.7.5",
120+
"typescript": "~3.8.3",
121121
"webpack-sources": "1.3.0"
122122
}
123123
}

projects/igniteui-angular/src/lib/grids/grid/cell.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,8 @@ describe('IgxGrid - Cell component #grid', () => {
302302

303303
// should attach 'doubletap'
304304
expect(addListenerSpy.calls.count()).toBeGreaterThan(1);
305-
expect(addListenerSpy).toHaveBeenCalledWith(firstCell.nativeElement, 'doubletap', firstCell.onDoubleClick, { cssProps: null });
305+
expect(addListenerSpy).toHaveBeenCalledWith(firstCell.nativeElement, 'doubletap', firstCell.onDoubleClick,
306+
{ cssProps: {} as any });
306307

307308
spyOn(grid.onDoubleClick, 'emit').and.callThrough();
308309

0 commit comments

Comments
 (0)