This commit is contained in:
2025-12-06 08:46:55 +01:00
parent a8a8ec9779
commit af5da29daf
30 changed files with 15869 additions and 3 deletions

View File

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