barker/bookie/src/app/bills/bills.component.spec.ts

26 lines
621 B
TypeScript

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