barker/bookie/src/app/sale-report/sale-report.component.spec.ts

25 lines
651 B
TypeScript
Raw Normal View History

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2019-08-21 03:02:12 +00:00
import { SaleReportComponent } from './sale-report.component';
2019-08-21 03:02:12 +00:00
describe('SaleReportComponent', () => {
let component: SaleReportComponent;
let fixture: ComponentFixture<SaleReportComponent>;
2019-08-21 03:02:12 +00:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [SaleReportComponent],
}).compileComponents();
2019-08-21 03:02:12 +00:00
}));
beforeEach(() => {
fixture = TestBed.createComponent(SaleReportComponent);
2019-08-21 03:02:12 +00:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});