Files
airport-chengdu-web/src/app/pages/historical-data/historical-data.component.spec.ts
T
2018-10-29 16:27:34 +08:00

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();
});
});