import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ColumnsComponent } from './columns.component'; import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; describe('ColumnsComponent', () => { let component: ColumnsComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ schemas: [CUSTOM_ELEMENTS_SCHEMA] , declarations: [ ColumnsComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ColumnsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });