Discount Report Done

This commit is contained in:
Amritanshu
2019-08-21 12:31:52 +05:30
parent 8f6c5930ee
commit 2b04b624b3
18 changed files with 456 additions and 28 deletions

View File

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