add frontend ng

This commit is contained in:
Tykayn 2025-10-03 11:56:55 +02:00 committed by tykayn
parent 80d52ff819
commit 83ef7bab6c
18 changed files with 188 additions and 4 deletions

View file

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