Skip to content

Commit 11517c2

Browse files
committed
refactor(grid): remove leftover fits
1 parent 3cbdcfd commit 11517c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('IgxGrid Component Tests', () => {
3131
}).compileComponents();
3232
}));
3333

34-
fit('should initialize a grid with columns from markup', () => {
34+
it('should initialize a grid with columns from markup', () => {
3535
const fix = TestBed.createComponent(IgxGridMarkupDeclarationComponent);
3636
fix.detectChanges();
3737

@@ -53,7 +53,7 @@ describe('IgxGrid Component Tests', () => {
5353
expect(fix.componentInstance.columnEventCount).toEqual(2);
5454
});
5555

56-
fit('should initialize a grid with autogenerated columns', () => {
56+
it('should initialize a grid with autogenerated columns', () => {
5757
const fix = TestBed.createComponent(IgxGridTestComponent);
5858
fix.componentInstance.data = [
5959
{ Number: 1, String: '1', Boolean: true, Date: new Date(Date.now()) }

0 commit comments

Comments
 (0)