luthor/otis/src/app/sale-report/sale-report.component.spec.ts

25 lines
665 B
TypeScript

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