Skip to content

Commit f8e25e9

Browse files
authored
chore(*): remove fakeAsync from the unit test
1 parent e00fba3 commit f8e25e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ describe('IgxGrid - Row Adding #grid', () => {
482482
expect(grid.gridAPI.get_row_by_index(1).addRowUI).toBeTrue();
483483
});
484484

485-
it(`Should emit 'rowEditEnter' only once while adding a new row`, fakeAsync(() => {
485+
it(`Should emit 'rowEditEnter' only once while adding a new row`, () => {
486486
spyOn(grid.rowEditEnter, 'emit').and.callThrough();
487487
const row = grid.gridAPI.get_row_by_index(0);
488488
row.beginAddRow();
@@ -502,7 +502,7 @@ describe('IgxGrid - Row Adding #grid', () => {
502502
fixture.detectChanges();
503503

504504
expect(grid.rowEditEnter.emit).toHaveBeenCalledTimes(1);
505-
}));
505+
});
506506

507507
it('Should scroll and start adding a row as the first one when using the public API method', async () => {
508508
await wait(DEBOUNCETIME);

0 commit comments

Comments
 (0)