* adding phantom js check

This commit is contained in:
Seth Call 2013-05-15 17:53:26 -05:00
parent c28995325e
commit b717ee9691
1 changed files with 5 additions and 0 deletions

5
build
View File

@ -28,6 +28,11 @@ fi
if [ -z $SKIP_TESTS ]; then
phantomjs --version
if [ "$?" != "0" ]; then
echo "phantomjs is required to run rspec tests; please install it"
fi
echo "running rspec tests"
bundle exec rspec
if [ "$?" = "0" ]; then