Files
biomedjs/node_modules/log4node/test-runner.sh
2014-09-14 07:04:16 -04:00

16 lines
184 B
Bash
Executable File

#!/bin/bash
set -e
cd test
if [ "$TEST" = "" ]; then
TEST=`ls test*.js`
fi
for test in $TEST; do
echo "Launching test : $test"
NODE_PATH=../lib vows $test --spec
echo ""
done