event subscriptions

This commit is contained in:
toni
2026-03-15 15:39:45 +01:00
parent 29c6828dd1
commit 2620538a2c
26 changed files with 1028 additions and 214 deletions
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Events } from './events';
describe('Events', () => {
let component: Events;
let fixture: ComponentFixture<Events>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Events]
})
.compileComponents();
fixture = TestBed.createComponent(Events);
component = fixture.componentInstance;
await fixture.whenStable();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});