(fastify, opts)
| 846 | fastify.get('/', (req, reply) => reply.send('ok')) |
| 847 | |
| 848 | async function plugin (fastify, opts) { |
| 849 | fastify.decorate('foo', 'bar') |
| 850 | fastify.get('/nested', (req, reply) => reply.send('ok')) |
| 851 | } |
| 852 | |
| 853 | await fastify.inject({ method: 'GET', path: '/' }) |
| 854 | await fastify.inject({ method: 'GET', path: '/nested' }) |