@@ -46,13 +46,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
4646 } ) )
4747
4848 describe ( 'Cell selection' , ( ) => {
49- beforeEach ( waitForAsync ( ( ) => {
49+ beforeEach ( ( ) => {
5050 fix = TestBed . createComponent ( IgxHierarchicalGridTestBaseComponent ) ;
5151 fix . detectChanges ( ) ;
5252 hierarchicalGrid = fix . componentInstance . hgrid ;
5353 rowIsland1 = fix . componentInstance . rowIsland ;
5454 rowIsland2 = fix . componentInstance . rowIsland2 ;
55- } ) ) ;
55+ } ) ;
5656
5757 it ( 'should allow only one cell to be selected in the whole hierarchical grid.' , ( ) => {
5858 hierarchicalGrid . height = '500px' ;
@@ -484,13 +484,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
484484 } ) ;
485485
486486 describe ( 'Row Selection' , ( ) => {
487- beforeEach ( fakeAsync ( /** height/width setter rAF */ ( ) => {
487+ beforeEach ( ( ) => {
488488 fix = TestBed . createComponent ( IgxHierarchicalGridRowSelectionComponent ) ;
489489 fix . detectChanges ( ) ;
490490 hierarchicalGrid = fix . componentInstance . hgrid ;
491491 rowIsland1 = fix . componentInstance . rowIsland ;
492492 rowIsland2 = fix . componentInstance . rowIsland2 ;
493- } ) ) ;
493+ } ) ;
494494
495495 it ( 'should have checkboxes on each row' , fakeAsync ( ( ) => {
496496 hierarchicalGrid . expandChildren = true ;
@@ -1302,13 +1302,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
13021302 } ) ;
13031303
13041304 describe ( 'Row Selection CRUD' , ( ) => {
1305- beforeEach ( fakeAsync ( /** height/width setter rAF */ ( ) => {
1305+ beforeEach ( ( ) => {
13061306 fix = TestBed . createComponent ( IgxHierarchicalGridRowSelectionNoTransactionsComponent ) ;
13071307 fix . detectChanges ( ) ;
13081308 hierarchicalGrid = fix . componentInstance . hgrid ;
13091309 rowIsland1 = fix . componentInstance . rowIsland ;
13101310 rowIsland2 = fix . componentInstance . rowIsland2 ;
1311- } ) ) ;
1311+ } ) ;
13121312
13131313 it ( 'should deselect deleted row' , ( ) => {
13141314 hierarchicalGrid . onHeaderSelectorClick ( UIInteractions . getMouseEvent ( 'click' ) ) ;
@@ -1382,12 +1382,12 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
13821382 describe ( 'Custom row selectors' , ( ) => {
13831383 let hGrid ;
13841384
1385- beforeEach ( fakeAsync ( ( ) => {
1385+ beforeEach ( ( ) => {
13861386 fix = TestBed . createComponent ( IgxHierarchicalGridCustomSelectorsComponent ) ;
13871387 fix . detectChanges ( ) ;
13881388 hGrid = fix . componentInstance . hGrid ;
13891389 hGrid . rowSelection = GridSelectionMode . multiple ;
1390- } ) ) ;
1390+ } ) ;
13911391
13921392 it ( 'Row context `select` method selects a single row' , ( ) => {
13931393 // root grid
0 commit comments