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

25 lines
658 B
TypeScript
Raw Normal View History

2021-01-05 07:32:52 +00:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { TaxReportComponent } from './tax-report.component';
describe('TaxReportComponent', () => {
let component: TaxReportComponent;
let fixture: ComponentFixture<TaxReportComponent>;
2022-04-17 08:14:56 +00:00
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [TaxReportComponent],
}).compileComponents();
}));
2021-01-05 07:32:52 +00:00
beforeEach(() => {
fixture = TestBed.createComponent(TaxReportComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});