2017-01-25 17:27:05 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-03-02 03:22:24 -05:00
|
|
|
set -u -e -o pipefail
|
2017-01-25 17:27:05 -05:00
|
|
|
|
|
|
|
# Setup environment
|
2017-03-05 04:49:10 -05:00
|
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
|
|
source ${thisDir}/_travis-fold.sh
|
2017-01-25 17:27:05 -05:00
|
|
|
|
|
|
|
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldStart "test.docs"
|
2017-03-05 04:49:10 -05:00
|
|
|
(
|
|
|
|
cd ${PROJECT_ROOT}/aio
|
2017-07-28 06:57:44 -04:00
|
|
|
yarn tools-test
|
2017-03-05 04:49:10 -05:00
|
|
|
)
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldEnd "test.docs"
|