Skip to content

Commit ba9a816

Browse files
committed
chore(*): solving lint errors
1 parent ae74341 commit ba9a816

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
@@ -483,7 +483,7 @@ describe('IgxGrid Component Tests #grid', () => {
483483
expect(parseInt(window.getComputedStyle(gridBody.nativeElement).height, 10)).toBeGreaterThan(500);
484484
}));
485485

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

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

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

0 commit comments

Comments
 (0)