https://github.com/angular/angular
Raw File
Tip revision: c194f6695d3a00330ddfbefdc3ba393b0dce0dab authored by Jeremy Elbourn on 18 March 2016, 21:35:40 UTC
chore: bump version to beta.11 w/ changelog
Tip revision: c194f66
test_js.sh
#!/bin/bash
set -ex

echo =============================================================================
# go to project dir
SCRIPT_DIR=$(dirname $0)
cd $SCRIPT_DIR/../..

# Issue #945 Travis still uses Dartium, and hence needs the env setup.
# For local tests, when a developer doesn't have Dart, don't source env_dart.sh
if  ${SCRIPT_DIR}/env_dart.sh 2>&1 > /dev/null ; then
    source $SCRIPT_DIR/env_dart.sh
fi

./node_modules/.bin/gulp pre-test-checks
./node_modules/.bin/gulp test.js --browsers=${KARMA_JS_BROWSERS:-Chrome}
${SCRIPT_DIR}/test_e2e_js.sh
back to top