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