| 60 | |
| 61 | it("should parse body using registered parser", () => { |
| 62 | const jsonParser = body => JSON.parse(body); |
| 63 | mockReq.server.parsers.set("application/json", jsonParser); |
| 64 | |
| 65 | parse(mockReq, mockRes, mockNext); |
no outgoing calls
no test coverage detected