Fix plugin tests.

This commit is contained in:
Sam Rose 2025-02-25 15:18:28 +00:00
parent f235d13222
commit b23aee478d
No known key found for this signature in database
1 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export const getPluginMetadata = async (
let pkg: any let pkg: any
let schema: any let schema: any
try { try {
pkg = JSON.parse(fs.readFileSync(join(path, "pkg.json"), "utf8")) pkg = JSON.parse(fs.readFileSync(join(path, "package.json"), "utf8"))
schema = JSON.parse(fs.readFileSync(join(path, "schema.json"), "utf8")) schema = JSON.parse(fs.readFileSync(join(path, "schema.json"), "utf8"))
if (!pkg.name) { if (!pkg.name) {
throw new Error("package.json is missing 'name'.") throw new Error("package.json is missing 'name'.")
@ -27,7 +27,8 @@ export const getPluginMetadata = async (
} }
} catch (err: any) { } catch (err: any) {
throw new Error( throw new Error(
`Unable to process schema.json/package.json in plugin. ${err.message}` `Unable to process schema.json/package.json in plugin. ${err.message}`,
{ cause: err }
) )
} }