Skip to content

Commit c70ec6d

Browse files
committed
chore(*): update failing test
1 parent 53c02c1 commit c70ec6d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid.component.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1313,10 +1313,13 @@ describe('IgxGrid Component Tests', () => {
13131313
fix.detectChanges();
13141314
await wait(16);
13151315
// check UI
1316+
const rowSelectorHeader = fix.nativeElement.querySelector('.igx-grid__thead').querySelector('.igx-grid__cbx-selection');
13161317
const header0 = fix.debugElement.queryAll(By.css('igx-grid-header-group'))[0];
13171318
const header1 = fix.debugElement.queryAll(By.css('igx-grid-header-group'))[1];
13181319
const header2 = fix.debugElement.queryAll(By.css('igx-grid-header-group'))[2];
1319-
expect(header0.nativeElement.offsetWidth).toEqual(Math.round(0.7 * grid.unpinnedWidth));
1320+
const expectedWidth = Math.round(0.7 * (grid.unpinnedWidth + rowSelectorHeader.offsetWidth));
1321+
expect(header0.nativeElement.offsetWidth).toBeGreaterThanOrEqual(expectedWidth - 1);
1322+
expect(header0.nativeElement.offsetWidth).toBeLessThanOrEqual(expectedWidth + 1);
13201323
expect(header1.nativeElement.offsetWidth).toEqual(136);
13211324
expect(header2.nativeElement.offsetWidth).toEqual(136);
13221325
expect(hScroll.nativeElement.hidden).toBe(false);

0 commit comments

Comments
 (0)