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