barker/bookie/src/app/sale-report/sale-report.component.spec.ts
tanshu d677cfb1ea Blacked and isorted the python files
Prettied and eslinted the typescript/html files
2020-10-11 10:56:29 +05:30

25 lines
651 B
TypeScript

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