Newer
Older
Lloyd Hilaiel
committed
#!/bin/bash
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
Lloyd Hilaiel
committed
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
BASEDIR=$(dirname $SCRIPT_DIR)
export PATH=$PATH:$SCRIPT_DIR/../node_modules/.bin
VOWS=`which vows 2> /dev/null`
if [ ! -x "$VOWS" ]; then
echo "vows not found in your path. try: npm install"
exit 1
fi
# vows hates absolute paths. sheesh.
cd $BASEDIR
Lloyd Hilaiel
committed
for env in test_mysql test_json ; do
Lloyd Hilaiel
committed
export NODE_ENV=$env
$SCRIPT_DIR/test_db_connectivity.js
if [ $? = 0 ] ; then
Lloyd Hilaiel
committed
echo "Testing with NODE_ENV=$env"
for file in tests/*.js ; do