Skip to content

Commit 74e235c

Browse files
committed
chore(*): Focus on tree-grid-integration tests.
1 parent 4399423 commit 74e235c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

projects/igniteui-angular/grids/tree-grid/src/tree-grid-integration.spec.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const CSS_CLASS_BANNER = 'igx-banner';
2222
const CSS_CLASS_ROW_EDITED = 'igx-grid__tr--edited';
2323
const 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

Comments
 (0)