Update validate-json.test.ts

This commit is contained in:
Michel Roegl-Brunner 2025-03-17 10:38:34 +01:00 committed by GitHub
parent 88e312fb36
commit ec62cc04cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,8 +30,8 @@ describe.each(fileNames)("%s", async (fileName) => {
script.install_methods.forEach((method) => { script.install_methods.forEach((method) => {
const scriptPath = path.resolve("..", method.script) const scriptPath = path.resolve("..", method.script)
//FIXME: Dose note account for new dir structure and files in /script/tools //FIXME: Dose note account for new dir structure and files in /script/tools
//Hack by commenting out the check for now
//assert(fs.stat(scriptPath), `Script file not found: ${scriptPath}`) assert(fs.stat(scriptPath), `Script file not found: ${scriptPath}`)
}) })
}); });
}) })