migrate project

This commit is contained in:
2025-12-06 11:38:19 +01:00
parent 314a581378
commit 3b983ebbf4
28 changed files with 3630 additions and 8736 deletions

View 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();
});
});