barker/bookie/src/app/sale-report/sale-report.component.spec.ts
Amritanshu 6d0f30503a Renamed Report permissions to make more sense
Removed the void and reprints report and added it to the bill settlement report
updated the import to add a new sql to be executed later to update the settlements and report permission names
Export works on all reports
2019-08-25 15:08:59 +05:30

26 lines
653 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();
});
});