Skip to content

Commit d3e2fe0

Browse files
committed
chore(*): solving lint errors
1 parent a30a065 commit d3e2fe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ describe('IgxGrid Component Tests #grid', () => {
482482
expect(parseInt(window.getComputedStyle(gridBody.nativeElement).height, 10)).toBeGreaterThan(500);
483483
}));
484484

485-
fit('should render loading indicator when loading is enabled and the grid has empty filtering pre-applied', fakeAsync(() => {
485+
it('should render loading indicator when loading is enabled and the grid has empty filtering pre-applied', fakeAsync(() => {
486486
const fixture = TestBed.createComponent(IgxGridTestComponent);
487487
const grid = fixture.componentInstance.grid;
488488
grid.filter('index', 0, IgxNumberFilteringOperand.instance().condition('equals'), true);
@@ -491,7 +491,7 @@ describe('IgxGrid Component Tests #grid', () => {
491491
tick(16);
492492

493493
const gridBody = fixture.debugElement.query(By.css(TBODY_CLASS));
494-
let loadingIndicator = gridBody.query(By.css('.igx-grid__loading'));
494+
const loadingIndicator = gridBody.query(By.css('.igx-grid__loading'));
495495
const domGrid = fixture.debugElement.query(By.css('igx-grid')).nativeElement;
496496

497497
// make sure default width/height are applied when there is no data

0 commit comments

Comments
 (0)