Revision 154289305ebba2520ac11ab8a2e239b6a94505d5 authored by Matias Niemelä on 22 May 2018, 23:16:26 UTC, committed by Matias Niemelä on 22 May 2018, 23:16:26 UTC
1 parent 469b1e4
Raw File
test-aio-e2e.sh
#!/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"
)
back to top