mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
3232125650
Essentially backportsffceae0a0andf7199aa8cto 4.4.x. PR Close #19565
19 lines
379 B
Bash
Executable File
19 lines
379 B
Bash
Executable File
#!/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"
|
|
yarn example-e2e --setup --local --shard=${AIO_SHARD}/2
|
|
travisFoldEnd "test.aio.example-e2e"
|
|
)
|