(req, reply)
| 11 | |
| 12 | const echoParams = (req, reply) => { reply.send(req.params) } |
| 13 | const echoBody = (req, reply) => { reply.send(req.body) } |
| 14 | |
| 15 | ;['addSchema', 'getSchema', 'getSchemas', 'setValidatorCompiler', 'setSerializerCompiler'].forEach(f => { |
| 16 | test(`Should expose ${f} function`, t => { |