(dino: Dino)
| 44 | const baseRoute = '/api/test'; |
| 45 | |
| 46 | function register(dino: Dino): void { |
| 47 | dino.registerController(TestController); |
| 48 | dino.registerApplicationError(AppError); |
| 49 | dino.bind(); |
| 50 | } |
| 51 | |
| 52 | // Verifies request, response and err property is mapped to dino |
| 53 | it('/get_throws_error_returns_500_and_data', done => { |
no test coverage detected