barker/bookie/src/app/tax-analysis/tax-analysis.component.spec.ts
2019-08-21 08:32:12 +05:30

26 lines
660 B
TypeScript

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