Add script to run JS specs in CI

This commit is contained in:
Rohan Mitchell
2015-04-22 16:36:31 +10:00
parent 7a78f4870a
commit 7aeeb6d18f

16
script/ci/run_js_tests.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
set -e
echo "--- Loading environment"
source ./script/ci/includes.sh
load_environment
echo "--- Verifying branch is based on current master"
exit_unless_master_merged
echo "--- Bundling"
bundle install
echo "--- Running tests"
bundle exec rake karma:run