Skip to content

Commit 178e8d4

Browse files
committed
chore(*): solving lint errors
1 parent b337e9f commit 178e8d4

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

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

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

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

0 commit comments

Comments
 (0)