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