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