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