Skip to content

Commit

Permalink
type error
Browse files Browse the repository at this point in the history
  • Loading branch information
cometkim committed Mar 15, 2024
1 parent 4cb889b commit f3bbcb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ciTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async function runTests() {
const out = await exec(`node`, ["input.js"], { cwd: testDir });
console.log(out.stdout);

if (out.status === 0) {
if (out.code === 0) {
console.log("✅ success in", file);
} else {
console.log(`❌ error in ${file} with stderr:\n`, out.stderr);
Expand Down

0 comments on commit f3bbcb7

Please sign in to comment.