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

25 lines
658 B
TypeScript

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