mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
16 lines
184 B
Bash
Executable File
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
|