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