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