11 lines
238 B
JavaScript
11 lines
238 B
JavaScript
'use strict'
|
|
|
|
const assert = require('node:assert')
|
|
|
|
module.exports = function (fastify, opts, done) {
|
|
assert.strictEqual(fastify.pluginName, 'test-plugin')
|
|
done()
|
|
}
|
|
|
|
module.exports[Symbol.for('fastify.display-name')] = 'test-plugin'
|