Keys auf SSE umgestellt
This commit is contained in:
18
api/src/modules/realtime/sse/sse.service.spec.ts
Normal file
18
api/src/modules/realtime/sse/sse.service.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user