Files
airport-chengdu-web/src/app/pages/tabset/guarantee-tab/guarantee-tab.component.spec.ts
T
2019-02-18 17:59:22 +08:00

26 lines
671 B
TypeScript

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