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

@@ -1,23 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { CreateAutoComponent } from './create-auto.component';
describe('CreateAutoComponent', () => {
let component: CreateAutoComponent;
let fixture: ComponentFixture<CreateAutoComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [CreateAutoComponent]
})
.compileComponents();
fixture = TestBed.createComponent(CreateAutoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1 @@
<p>create-auto works!</p>

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

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-create-auto',
imports: [],
templateUrl: './create-auto.html',
styleUrl: './create-auto.css',
})
export class CreateAuto {
}