oedb-backend/frontend/src/app/pages/agenda/agenda.spec.ts
2025-10-04 12:58:44 +02:00

23 lines
528 B
TypeScript

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