@@ -17,7 +17,7 @@ const DEBOUNCE_TIME = 30;
17
17
const GRID_CONTENT_CLASS = '.igx-grid__tbody-content' ;
18
18
const GRID_FOOTER_CLASS = '.igx-grid__tfoot' ;
19
19
20
- describe ( 'IgxHierarchicalGrid Navigation' , ( ) => {
20
+ fdescribe ( 'IgxHierarchicalGrid Navigation' , ( ) => {
21
21
let fixture ;
22
22
let hierarchicalGrid : IgxHierarchicalGridComponent ;
23
23
let baseHGridContent : DebugElement ;
@@ -717,25 +717,25 @@ describe('IgxHierarchicalGrid Navigation', () => {
717
717
718
718
it ( 'should allow navigating up from parent into nested child grid' , async ( ) => {
719
719
hierarchicalGrid . verticalScrollContainer . scrollTo ( 2 ) ;
720
- fixture . detectChanges ( ) ;
721
720
await wait ( ) ;
721
+ fixture . detectChanges ( ) ;
722
722
723
723
const child = hierarchicalGrid . gridAPI . getChildGrids ( false ) [ 0 ] ;
724
724
const lastIndex = child . dataView . length - 1 ;
725
725
child . verticalScrollContainer . scrollTo ( lastIndex ) ;
726
- fixture . detectChanges ( ) ;
727
726
await wait ( ) ;
727
+ fixture . detectChanges ( ) ;
728
728
729
729
child . verticalScrollContainer . scrollTo ( lastIndex ) ;
730
- fixture . detectChanges ( ) ;
731
730
await wait ( ) ;
731
+ fixture . detectChanges ( ) ;
732
732
733
733
const parentCell = hierarchicalGrid . gridAPI . get_cell_by_index ( 2 , 'ID' ) ;
734
734
GridFunctions . focusCell ( fixture , parentCell ) ;
735
735
736
736
UIInteractions . triggerEventHandlerKeyDown ( 'arrowup' , baseHGridContent , false , false , false ) ;
737
- fixture . detectChanges ( ) ;
738
737
await wait ( DEBOUNCE_TIME ) ;
738
+ fixture . detectChanges ( ) ;
739
739
740
740
const nestedChild = child . gridAPI . getChildGrids ( false ) [ 5 ] ;
741
741
const lastCell = nestedChild . gridAPI . get_cell_by_index ( 4 , 'ID' ) ;
0 commit comments