2015-03-15 16:51:41 -04:00
|
|
|
#!/bin/bash
|
2015-11-05 11:20:13 -05:00
|
|
|
set -ex
|
2015-03-15 16:51:41 -04:00
|
|
|
|
|
|
|
echo =============================================================================
|
|
|
|
# go to project dir
|
|
|
|
SCRIPT_DIR=$(dirname $0)
|
2015-03-19 14:36:27 -04:00
|
|
|
source $SCRIPT_DIR/env_dart.sh
|
2015-03-15 16:51:41 -04:00
|
|
|
cd $SCRIPT_DIR/../..
|
|
|
|
|
2015-04-02 07:12:59 -04:00
|
|
|
./node_modules/.bin/gulp test.dart --browsers=$KARMA_BROWSERS
|
2015-03-15 16:51:41 -04:00
|
|
|
${SCRIPT_DIR}/test_server_dart.sh
|
|
|
|
${SCRIPT_DIR}/test_e2e_dart.sh
|