Skip to content

Commit f3bbcb7

Browse files
committed
type error
1 parent 4cb889b commit f3bbcb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ciTest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async function runTests() {
7272
const out = await exec(`node`, ["input.js"], { cwd: testDir });
7373
console.log(out.stdout);
7474

75-
if (out.status === 0) {
75+
if (out.code === 0) {
7676
console.log("✅ success in", file);
7777
} else {
7878
console.log(`❌ error in ${file} with stderr:\n`, out.stderr);

0 commit comments

Comments
 (0)