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