Skip to content

Commit 5147fc0

Browse files
committed
build(*): Remove unfinished test
1 parent 81f89b4 commit 5147fc0

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

projects/igniteui-angular/src/lib/grid/grid.pinning.spec.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -602,19 +602,6 @@ describe('IgxGrid - Column Pinning ', () => {
602602
expect(grid.columns[6].pinned).toBe(true);
603603
expect(grid.unpinnedWidth).toBeGreaterThanOrEqual(grid.unpinnedAreaMinWidth);
604604
});
605-
606-
it('should not have grid layout row with width that extends pass the container\'s one', () => {
607-
const fix = TestBed.createComponent(GridPinningComponent);
608-
fix.detectChanges();
609-
const grid = fix.componentInstance.instance;
610-
611-
grid.getColumnByName('Phone').pin();
612-
fix.detectChanges();
613-
614-
const gridChildren = Array.prototype.slice.call(grid.nativeElement.children);
615-
const gridWidth = grid.nativeElement.getBoundingClientRect().width;
616-
gridChildren.forEach(elem => expect(elem.getBoundingClientRect().width).toEqual(gridWidth));
617-
});
618605
});
619606
@Component({
620607
template: `

0 commit comments

Comments
 (0)