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