diff --git a/templates/plugin/index.js b/templates/plugin/index.js index 9fa66d95..3e053ec0 100644 --- a/templates/plugin/index.js +++ b/templates/plugin/index.js @@ -6,4 +6,4 @@ module.exports = fp(async function (fastify, opts) { fastify.decorate('exampleDecorator', () => { return 'decorated' }) -}, { fastify: '^4.x' }) +}, { fastify: '^5.x' }) diff --git a/test/generate-plugin.test.js b/test/generate-plugin.test.js index 5b521131..b9dee5dc 100644 --- a/test/generate-plugin.test.js +++ b/test/generate-plugin.test.js @@ -19,6 +19,8 @@ const templateDir = path.join(__dirname, '..', 'templates', 'plugin') const cliPkg = require('../package') const { exec, execSync } = require('node:child_process') const strip = require('strip-ansi') +const semver = require('semver') + const expected = {} const initVersion = execSync('npm get init-version').toString().trim() @@ -100,16 +102,32 @@ function define (t) { }) test('should finish succesfully', async (t) => { - t.plan(17 + Object.keys(expected).length) + t.plan(18 + Object.keys(expected).length) try { await generate(workdir, pluginTemplate) await verifyPkg(t) await verifyCopy(t, expected) + await verifyFastifyPluginVersion(t) } catch (err) { t.error(err) } }) + function verifyFastifyPluginVersion (t) { + return new Promise((resolve, reject) => { + const pluginPath = path.join(workdir, 'index.js') + const plugin = require(pluginPath) + const pkgPath = path.join(__dirname, '../', 'package.json') + const pkg = require(pkgPath) + const pluginMeta = plugin[Symbol.for('plugin-meta')] + const pluginVersion = pluginMeta.fastify + const pkgVersion = pkg.dependencies.fastify + const satified = semver.intersects(pluginVersion, pkgVersion) + t.ok(satified, 'meta should be the same') + resolve() + }) + } + function verifyPkg (t) { return new Promise((resolve, reject) => { const pkgFile = path.join(workdir, 'package.json')