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

26 lines
653 B
TypeScript
Raw Normal View History

2019-08-21 03:02:12 +00:00
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
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]
2019-08-21 03:02:12 +00:00
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SaleReportComponent);
2019-08-21 03:02:12 +00:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});