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

26 lines
621 B
TypeScript

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