| 312 | |
| 313 | it('partial working on fastify', async () => { |
| 314 | @Controller() |
| 315 | class FastifyController { |
| 316 | @Implement(contract.ping) |
| 317 | pong(@Req() _req: any) { |
| 318 | req = _req |
| 319 | return implement(contract.ping).handler(ping_handler) |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | const moduleRef = await Test.createTestingModule({ |
| 324 | controllers: [FastifyController], |
nothing calls this directly
no test coverage detected