@@ -17,7 +17,7 @@ const DEBOUNCE_TIME = 30;
1717const GRID_CONTENT_CLASS = '.igx-grid__tbody-content' ;
1818const GRID_FOOTER_CLASS = '.igx-grid__tfoot' ;
1919
20- describe ( 'IgxHierarchicalGrid Navigation' , ( ) => {
20+ fdescribe ( 'IgxHierarchicalGrid Navigation' , ( ) => {
2121 let fixture ;
2222 let hierarchicalGrid : IgxHierarchicalGridComponent ;
2323 let baseHGridContent : DebugElement ;
@@ -717,25 +717,25 @@ describe('IgxHierarchicalGrid Navigation', () => {
717717
718718 it ( 'should allow navigating up from parent into nested child grid' , async ( ) => {
719719 hierarchicalGrid . verticalScrollContainer . scrollTo ( 2 ) ;
720- fixture . detectChanges ( ) ;
721720 await wait ( ) ;
721+ fixture . detectChanges ( ) ;
722722
723723 const child = hierarchicalGrid . gridAPI . getChildGrids ( false ) [ 0 ] ;
724724 const lastIndex = child . dataView . length - 1 ;
725725 child . verticalScrollContainer . scrollTo ( lastIndex ) ;
726- fixture . detectChanges ( ) ;
727726 await wait ( ) ;
727+ fixture . detectChanges ( ) ;
728728
729729 child . verticalScrollContainer . scrollTo ( lastIndex ) ;
730- fixture . detectChanges ( ) ;
731730 await wait ( ) ;
731+ fixture . detectChanges ( ) ;
732732
733733 const parentCell = hierarchicalGrid . gridAPI . get_cell_by_index ( 2 , 'ID' ) ;
734734 GridFunctions . focusCell ( fixture , parentCell ) ;
735735
736736 UIInteractions . triggerEventHandlerKeyDown ( 'arrowup' , baseHGridContent , false , false , false ) ;
737- fixture . detectChanges ( ) ;
738737 await wait ( DEBOUNCE_TIME ) ;
738+ fixture . detectChanges ( ) ;
739739
740740 const nestedChild = child . gridAPI . getChildGrids ( false ) [ 5 ] ;
741741 const lastCell = nestedChild . gridAPI . get_cell_by_index ( 4 , 'ID' ) ;
0 commit comments