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