jasmine-ajax/travis-script.sh

16 lines
296 B
Bash
Raw Normal View History

#!/bin/bash -e
if [ $USE_SAUCE == true ]
then
2015-05-19 08:27:27 +08:00
if [ $TRAVIS_SECURE_ENV_VARS != true ]
then
echo "skipping tests since we can't use sauce"
exit 0
fi
fi
set -e
grunt jshint
bundle exec rake jasmine:ci
JASMINE_CONFIG_PATH=spec/support/jasmine_combined.yml bundle exec rake jasmine:ci