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

26 lines
621 B
TypeScript
Raw Normal View History

2018-11-12 14:32:28 +08:00
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();
});
});