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