(server)
| 1461 | }) |
| 1462 | |
| 1463 | function addRandomRoute (server) { |
| 1464 | server.post(`/${Math.random()}`, |
| 1465 | { schema: { body: { type: 'object' } } }, |
| 1466 | (req, reply) => reply.send() |
| 1467 | ) |
| 1468 | } |
| 1469 | |
| 1470 | test('Add schema order should not break the startup', (t, testDone) => { |
| 1471 | t.plan(1) |
no test coverage detected