We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90b3fe0 commit 1befdfbCopy full SHA for 1befdfb
run-should-fail-tests.js
@@ -22,8 +22,11 @@ const go = async () => {
22
try {
23
console.log(`testing: ${p}`);
24
25
- await exec(`cd "./should-fail-tests/${p}" && spago install`, true);
26
- await exec(`cd "./should-fail-tests/${p}" && spago build`, true);
+ await exec(
+ `cd "./should-fail-tests/${p}" && npm exec spago install`,
27
+ true,
28
+ );
29
+ await exec(`cd "./should-fail-tests/${p}" && npm exec spago build`, true);
30
31
console.error(`${p} compiled. Test failed`);
32
process.exit(1);
0 commit comments