(req, res)
| 31 | params: { an_id: joi.number() } |
| 32 | }, |
| 33 | handler (req, res) { |
| 34 | t.assert.strictEqual(Object.keys(req.params).length, 1) |
| 35 | t.assert.strictEqual(req.params.an_id, '42') |
| 36 | res.send({ hello: 'world' }) |
| 37 | } |
| 38 | }) |
| 39 | |
| 40 | fastify.inject({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…