update: icon mechanic
All checks were successful
Build and Push Docker Images / build-and-push-backend (push) Successful in 7s
Build and Push Docker Images / build-and-push-frontend (push) Successful in 15s

This commit is contained in:
2026-01-31 17:41:20 +01:00
parent be813ffbf0
commit fa86607af3
11 changed files with 367 additions and 29 deletions

View File

@@ -1,18 +1,18 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ItemForm } from './item-form';
import { ItemFormComponent } from './item-form';
describe('ItemForm', () => {
let component: ItemForm;
let fixture: ComponentFixture<ItemForm>;
describe('ItemFormComponent', () => {
let component: ItemFormComponent;
let fixture: ComponentFixture<ItemFormComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ItemForm]
imports: [ItemFormComponent]
})
.compileComponents();
fixture = TestBed.createComponent(ItemForm);
fixture = TestBed.createComponent(ItemFormComponent);
component = fixture.componentInstance;
await fixture.whenStable();
});