This commit is contained in:
wangshiming
2022-02-16 10:00:40 +08:00
parent 9eb716ecd2
commit faae5ca73b
8 changed files with 535 additions and 20 deletions

View File

@ -0,0 +1,24 @@
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();
});
});