Bill Settlement Report Done (Bill Details)

TODO: Rename Bill Details Permission to Bill Settlement Report
This commit is contained in:
Amritanshu
2019-08-21 10:02:28 +05:30
parent 0f00d96dc9
commit 243c3cb280
19 changed files with 494 additions and 54 deletions

View File

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