Files
dashboard/frontend/src/app/components/item-list/item-list.spec.ts
jafreli fa86607af3
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
update: icon mechanic
2026-01-31 17:41:20 +01:00

24 lines
600 B
TypeScript

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