Files
airport-chengdu-web/src/app/pages/basic-data/city/city.component.spec.ts
T

26 lines
614 B
TypeScript

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