We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cb889b commit f3bbcb7Copy full SHA for f3bbcb7
scripts/ciTest.js
@@ -72,7 +72,7 @@ async function runTests() {
72
const out = await exec(`node`, ["input.js"], { cwd: testDir });
73
console.log(out.stdout);
74
75
- if (out.status === 0) {
+ if (out.code === 0) {
76
console.log("✅ success in", file);
77
} else {
78
console.log(`❌ error in ${file} with stderr:\n`, out.stderr);
0 commit comments