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