@@ -22,7 +22,7 @@ const CSS_CLASS_BANNER = 'igx-banner';
2222const CSS_CLASS_ROW_EDITED = 'igx-grid__tr--edited' ;
2323const GRID_RESIZE_CLASS = '.igx-grid-th__resize-handle' ;
2424
25- describe ( 'IgxTreeGrid - Integration #tGrid' , ( ) => {
25+ fdescribe ( 'IgxTreeGrid - Integration #tGrid' , ( ) => {
2626 let fix : ComponentFixture < any > ;
2727 let treeGrid : IgxTreeGridComponent ;
2828
@@ -128,16 +128,18 @@ describe('IgxTreeGrid - Integration #tGrid', () => {
128128
129129 treeGrid . moving = true ;
130130
131- // const header = TreeGridFunctions.getHeaderCell(fix, 'ID').nativeElement;
132- const header = treeGrid . headerCellList [ 0 ] . nativeElement ;
131+ const header = TreeGridFunctions . getHeaderCell ( fix , 'ID' ) . nativeElement ;
132+ // const header = treeGrid.headerCellList[0].nativeElement;
133133 const headerRect = header . getBoundingClientRect ( ) ;
134134 const startX = headerRect . width / 2 ;
135135 const startY = headerRect . height / 2 ;
136136
137137 UIInteractions . simulatePointerEvent ( 'pointerdown' , header , startX , startY ) ;
138+ await wait ( ) ;
138139 UIInteractions . simulatePointerEvent ( 'pointermove' , header , startX + 6 , startY + 6 ) ;
139140 await wait ( ) ;
140141 UIInteractions . simulatePointerEvent ( 'pointermove' , header , startX + headerRect . width , startY ) ;
142+ await wait ( ) ;
141143 UIInteractions . simulatePointerEvent ( 'pointerup' , header , startX + headerRect . width , startY ) ;
142144 await wait ( ) ;
143145 fix . detectChanges ( ) ;
0 commit comments