2017-01-25 12:39:01 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-03-02 03:22:24 -05:00
|
|
|
set -u -e -o pipefail
|
2017-01-25 12:39:01 -05:00
|
|
|
|
|
|
|
# Setup environment
|
2017-03-05 04:49:10 -05:00
|
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
|
|
source ${thisDir}/_travis-fold.sh
|
|
|
|
|
|
|
|
|
|
|
|
# run in subshell to avoid polluting cwd
|
|
|
|
(
|
|
|
|
cd ${PROJECT_ROOT}/aio
|
|
|
|
|
|
|
|
|
|
|
|
# Lint the code
|
|
|
|
travisFoldStart "test.aio.lint"
|
|
|
|
yarn run lint
|
|
|
|
travisFoldEnd "test.aio.lint"
|
|
|
|
|
|
|
|
|
|
|
|
# Start xvfb for local Chrome used for testing
|
|
|
|
if [[ ${TRAVIS} ]]; then
|
|
|
|
travisFoldStart "test.aio.xvfb-start"
|
|
|
|
sh -e /etc/init.d/xvfb start
|
|
|
|
travisFoldEnd "test.aio.xvfb-start"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Run unit tests
|
|
|
|
travisFoldStart "test.aio.unit"
|
|
|
|
yarn test -- --single-run
|
|
|
|
travisFoldEnd "test.aio.unit"
|
|
|
|
|
|
|
|
# Run e2e tests
|
|
|
|
travisFoldStart "test.aio.e2e"
|
|
|
|
yarn run e2e
|
|
|
|
travisFoldEnd "test.aio.e2e"
|
|
|
|
)
|