diff --git a/scripts/check-v-next-npm-scripts.js b/scripts/check-v-next-npm-scripts.js index 6e435187a6..da70188ea0 100644 --- a/scripts/check-v-next-npm-scripts.js +++ b/scripts/check-v-next-npm-scripts.js @@ -43,6 +43,12 @@ for (const dir of dirs) { continue; } + // TODO: This is a temporary solution until we convert Ignitions tests + // to Node Test Runner. + if (dir.name === "hardhat-ignition") { + continue; + } + const packageJsonPath = path.resolve(vNextDir, dir.name, "package.json"); const packageJson = require(packageJsonPath);