@@ -46,13 +46,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
46
46
} ) )
47
47
48
48
describe ( 'Cell selection' , ( ) => {
49
- beforeEach ( waitForAsync ( ( ) => {
49
+ beforeEach ( ( ) => {
50
50
fix = TestBed . createComponent ( IgxHierarchicalGridTestBaseComponent ) ;
51
51
fix . detectChanges ( ) ;
52
52
hierarchicalGrid = fix . componentInstance . hgrid ;
53
53
rowIsland1 = fix . componentInstance . rowIsland ;
54
54
rowIsland2 = fix . componentInstance . rowIsland2 ;
55
- } ) ) ;
55
+ } ) ;
56
56
57
57
it ( 'should allow only one cell to be selected in the whole hierarchical grid.' , ( ) => {
58
58
hierarchicalGrid . height = '500px' ;
@@ -484,13 +484,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
484
484
} ) ;
485
485
486
486
describe ( 'Row Selection' , ( ) => {
487
- beforeEach ( fakeAsync ( /** height/width setter rAF */ ( ) => {
487
+ beforeEach ( ( ) => {
488
488
fix = TestBed . createComponent ( IgxHierarchicalGridRowSelectionComponent ) ;
489
489
fix . detectChanges ( ) ;
490
490
hierarchicalGrid = fix . componentInstance . hgrid ;
491
491
rowIsland1 = fix . componentInstance . rowIsland ;
492
492
rowIsland2 = fix . componentInstance . rowIsland2 ;
493
- } ) ) ;
493
+ } ) ;
494
494
495
495
it ( 'should have checkboxes on each row' , fakeAsync ( ( ) => {
496
496
hierarchicalGrid . expandChildren = true ;
@@ -1302,13 +1302,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
1302
1302
} ) ;
1303
1303
1304
1304
describe ( 'Row Selection CRUD' , ( ) => {
1305
- beforeEach ( fakeAsync ( /** height/width setter rAF */ ( ) => {
1305
+ beforeEach ( ( ) => {
1306
1306
fix = TestBed . createComponent ( IgxHierarchicalGridRowSelectionNoTransactionsComponent ) ;
1307
1307
fix . detectChanges ( ) ;
1308
1308
hierarchicalGrid = fix . componentInstance . hgrid ;
1309
1309
rowIsland1 = fix . componentInstance . rowIsland ;
1310
1310
rowIsland2 = fix . componentInstance . rowIsland2 ;
1311
- } ) ) ;
1311
+ } ) ;
1312
1312
1313
1313
it ( 'should deselect deleted row' , ( ) => {
1314
1314
hierarchicalGrid . onHeaderSelectorClick ( UIInteractions . getMouseEvent ( 'click' ) ) ;
@@ -1382,12 +1382,12 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
1382
1382
describe ( 'Custom row selectors' , ( ) => {
1383
1383
let hGrid ;
1384
1384
1385
- beforeEach ( fakeAsync ( ( ) => {
1385
+ beforeEach ( ( ) => {
1386
1386
fix = TestBed . createComponent ( IgxHierarchicalGridCustomSelectorsComponent ) ;
1387
1387
fix . detectChanges ( ) ;
1388
1388
hGrid = fix . componentInstance . hGrid ;
1389
1389
hGrid . rowSelection = GridSelectionMode . multiple ;
1390
- } ) ) ;
1390
+ } ) ;
1391
1391
1392
1392
it ( 'Row context `select` method selects a single row' , ( ) => {
1393
1393
// root grid
0 commit comments