Files
bbq/src/app/routes/usercenter/components/driver/captain/add/add.component.spec.ts
wangshiming faae5ca73b fix bug
2022-02-16 10:00:40 +08:00

25 lines
686 B
TypeScript

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