Skip to content
Snippets Groups Projects
Commit 1476ef1e authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

a little test script to allow for running of all tests in repo from top level,...

a little test script to allow for running of all tests in repo from top level, also hopes to make tests more discoverable
parent eb45e428
No related branches found
No related tags found
No related merge requests found
test.sh 0 → 100755
#!/bin/bash
VOWS=`which vows 2> /dev/null`
if [ ! -x "$VOWS" ]; then
echo "vows not found in your path. try: npm install -g vows"
exit 1
fi
for file in browserid/tests/*.js ; do
vows $file
if [[ $? != 0 ]] ; then
exit 1
fi
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment