2019-04-25 17:27:24 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
2019-05-07 10:27:45 -07:00
|
|
|
cd lib/binding_web
|
2019-04-25 17:27:24 -07:00
|
|
|
|
|
|
|
|
if [ ! -d "node_modules/chai" ] || [ ! -d "node_modules/mocha" ]; then
|
|
|
|
|
echo "Installing test dependencies..."
|
|
|
|
|
npm install
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
./node_modules/.bin/mocha
|