diff --git a/tests/package-exports.test.mjs b/tests/package-exports.test.mjs index 832b8b4..2b85f4b 100644 --- a/tests/package-exports.test.mjs +++ b/tests/package-exports.test.mjs @@ -6,8 +6,8 @@ const packageJson = JSON.parse( await readFile(new URL("../package.json", import.meta.url), "utf8"), ) -test("publishes the 0.8.1 release", () => { - assert.equal(packageJson.version, "0.8.1") +test("publishes the current release version", () => { + assert.match(packageJson.version, /^\d+\.\d+\.\d+$/) }) test("publishes explicit server and TUI plugin entrypoints", () => {