2015-01-08 22:20:05 +00:00
|
|
|
#!/bin/bash
|
2015-11-05 16:20:13 +00:00
|
|
|
set -ex
|
2015-01-08 22:20:05 +00:00
|
|
|
|
|
|
|
|
echo =============================================================================
|
|
|
|
|
# go to project dir
|
|
|
|
|
SCRIPT_DIR=$(dirname $0)
|
|
|
|
|
cd $SCRIPT_DIR/../..
|
|
|
|
|
|
|
|
|
|
./node_modules/.bin/webdriver-manager update
|
|
|
|
|
|
|
|
|
|
function killServer () {
|
|
|
|
|
kill $serverPid
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-13 22:59:29 +00:00
|
|
|
./node_modules/.bin/gulp serve.js.prod&
|
2015-01-08 22:20:05 +00:00
|
|
|
serverPid=$!
|
|
|
|
|
|
2015-05-05 01:34:06 +00:00
|
|
|
./node_modules/.bin/gulp build.css.material&
|
|
|
|
|
|
2015-01-08 22:20:05 +00:00
|
|
|
trap killServer EXIT
|
|
|
|
|
|
2015-01-21 00:29:50 +00:00
|
|
|
# wait for server to come up!
|
|
|
|
|
sleep 10
|
|
|
|
|
|
2015-03-19 18:36:27 +00:00
|
|
|
# Let protractor use default browser unless one is specified.
|
|
|
|
|
OPTIONS="";
|
|
|
|
|
if [[ -n "$E2E_BROWSERS" ]]; then
|
|
|
|
|
OPTIONS="--browsers=$E2E_BROWSERS";
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
./node_modules/.bin/protractor protractor-js.conf.js $OPTIONS
|
2015-03-26 23:56:53 +00:00
|
|
|
./node_modules/.bin/protractor protractor-js.conf.js $OPTIONS --benchmark --dryrun
|
2015-12-29 01:47:49 +00:00
|
|
|
./node_modules/.bin/protractor dist/js/cjs/benchpress/test/firefox_extension/conf.js
|
2015-06-01 23:17:28 +00:00
|
|
|
|