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