Skip to content

Commit

Permalink
test runner was broken in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tlhunter committed Oct 3, 2023
1 parent a2271a3 commit 2158a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ for i in test/*.spec.js; do
node "$i" || ((errors++))
done

if ((errors > 0)); then
if [ "$errors" -gt "0" ]; then
echo "Encountered ${errors} test suite failures!"
fi

Expand Down

0 comments on commit 2158a37

Please sign in to comment.