File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
projects/igniteui-angular/src/lib/grids/grid Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments