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 { SseService } from './sse.service';
describe('SseService', () => {
let service: SseService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [SseService],
}).compile();
service = module.get<SseService>(SseService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});