Keys auf SSE umgestellt

This commit is contained in:
Bastian Wagner
2026-03-05 14:51:45 +01:00
parent f88fe93182
commit ac2117b64b
13 changed files with 217 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { SseController } from './sse.controller';
describe('SseController', () => {
let controller: SseController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [SseController],
}).compile();
controller = module.get<SseController>(SseController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});