angular-cn/scripts/ci/test-aio-e2e.sh

19 lines
374 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -u -e -o pipefail
# Setup environment
readonly thisDir=$(cd $(dirname $0); pwd)
source ${thisDir}/_travis-fold.sh
# run in subshell to avoid polluting cwd
(
cd ${PROJECT_ROOT}/aio
# Run example e2e tests
travisFoldStart "test.aio.example-e2e"
2017-07-27 03:27:11 -04:00
yarn example-e2e -- --setup --shard=${AIO_SHARD}/2
travisFoldEnd "test.aio.example-e2e"
)