| 81 | let req = {} as any; |
| 82 | let res = { locals: { dino: { id: 111 } } } as any; |
| 83 | let next = x => { |
| 84 | if (x instanceof Error) { |
| 85 | throwInvokedNext = true; |
| 86 | } else { |
| 87 | proceedInvokedNext = true; |
| 88 | } |
| 89 | }; |
| 90 | |
| 91 | ctrl.patch(req, res, next); |
| 92 | let dino = obj.dino as IDinoProperties; |
no outgoing calls
no test coverage detected