83402930f2
* `npm install` now does a full install; auxiliary installation steps have been integrated into the `postinstall` script. * Updated developer docs `DEVELOPER.md` accordingly; also added instructions to dev docs for performing full tests (via `npm test`) -- same as those run on Travis. * Reorg in tests so that JS tests can run without a Dart env. Partly fixes #945 **under the assumption that when running JS tests locally, `ChromeCanary` is the desired browser to use**. Note that CI tests (Travis) still uses `DartiumWithWebPlatform` across the board (Maybe because ChromeCanary isn't being installed?) Fixes #1012. Closes #1010
17 lines
519 B
Bash
Executable File
17 lines
519 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
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 test.js --browsers=${KARMA_BROWSERS:-ChromeCanary}
|
|
${SCRIPT_DIR}/test_e2e_js.sh
|