luthor/otis/src/app/discount-report/discount-report.component.s...

25 lines
693 B
TypeScript

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