()
| 5 | const Fastify = require('../../fastify') |
| 6 | |
| 7 | function getDefaultSchema () { |
| 8 | return { |
| 9 | type: 'object', |
| 10 | required: ['hello'], |
| 11 | properties: { |
| 12 | hello: { type: 'string' }, |
| 13 | world: { type: 'string' } |
| 14 | } |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | function getResponseSchema () { |
| 19 | return { |
no outgoing calls
no test coverage detected