| 222 | |
| 223 | it('should recursively return the routes of the subControllers if they exist.', () => { |
| 224 | @Reflect.metadata('path', '/api') |
| 225 | @Hook(hook2) |
| 226 | class ApiController { |
| 227 | @Get('/flights') |
| 228 | @Hook(hook3) |
| 229 | flights() {} |
| 230 | } |
| 231 | |
| 232 | @Reflect.metadata('path', '/auth') |
| 233 | @Hook(hook4) |
nothing calls this directly
no test coverage detected