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