(fastify, opts, done)
| 290 | const fastify = Fastify() |
| 291 | |
| 292 | function pluginA (fastify, opts, done) { |
| 293 | t.assert.ok(fastify.hasPlugin('plugin-A')) |
| 294 | done() |
| 295 | } |
| 296 | pluginA[Symbol.for('fastify.display-name')] = 'plugin-A' |
| 297 | fastify.register(pluginA) |
| 298 |