Files
dashboard/frontend/src/app/components/item-form/item-form.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 { ItemFormComponent } from './item-form';
describe('ItemFormComponent', () => {
let component: ItemFormComponent;
let fixture: ComponentFixture<ItemFormComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ItemFormComponent]
})
.compileComponents();
fixture = TestBed.createComponent(ItemFormComponent);
component = fixture.componentInstance;
await fixture.whenStable();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});