Add Frontend

This commit is contained in:
2026-01-31 00:09:53 +01:00
parent 325d160a45
commit 7e2e2f1e69
32 changed files with 9466 additions and 0 deletions

View File

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