blob: 14679f8271f5192bdf9a96d13f4d92b2ef29b7ec [file] [log] [blame]
#!/bin/sh
./node_modules/jshint/bin/hint ./*
hint=$?
if [ $hint != 0 ]; then
echo "< script runner stopped jshint failed >";
exit $hint
else
echo "< jshint passed >";
fi
./node_modules/tap/bin/tap.js ./test/*.js
unit=$?
if [ $unit != 0 ]; then
echo "< script runner stopped unit tests failed >";
exit $unit
else
echo "< unit tests passed >";
fi