diff --git a/frontend/src/__tests__/public/validate-json.test.ts b/frontend/src/__tests__/public/validate-json.test.ts index b0efd20..7d92b62 100644 --- a/frontend/src/__tests__/public/validate-json.test.ts +++ b/frontend/src/__tests__/public/validate-json.test.ts @@ -30,8 +30,8 @@ describe.each(fileNames)("%s", async (fileName) => { script.install_methods.forEach((method) => { const scriptPath = path.resolve("..", method.script) //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}`) }) }); })