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<ColumnsComponent>;
-
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();
});
-});
+});
\ No newline at end of file