migrate project
This commit is contained in:
23
demo/src/app/create-auto/create-auto.spec.ts
Normal file
23
demo/src/app/create-auto/create-auto.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CreateAuto } from './create-auto';
|
||||
|
||||
describe('CreateAuto', () => {
|
||||
let component: CreateAuto;
|
||||
let fixture: ComponentFixture<CreateAuto>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [CreateAuto]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(CreateAuto);
|
||||
component = fixture.componentInstance;
|
||||
await fixture.whenStable();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user