(...gateways)
| 5 | import { AckGateway } from '../src/ack.gateway'; |
| 6 | |
| 7 | async function createNestApp(...gateways): Promise<INestApplication> { |
| 8 | const testingModule = await Test.createTestingModule({ |
| 9 | providers: gateways, |
| 10 | }).compile(); |
| 11 | const app = testingModule.createNestApplication(); |
| 12 | return app; |
| 13 | } |
| 14 | |
| 15 | describe('WebSocketGateway (ack)', () => { |
| 16 | let ws, app; |
no test coverage detected