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