2017-01-25 19:39:01 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-03-02 00:22:24 -08:00
|
|
|
set -u -e -o pipefail
|
2017-01-25 19:39:01 +02:00
|
|
|
|
|
|
|
# Setup environment
|
2017-03-05 01:49:10 -08: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"
|
2017-04-01 02:24:25 +03:00
|
|
|
yarn lint
|
2017-03-05 01:49:10 -08:00
|
|
|
travisFoldEnd "test.aio.lint"
|
|
|
|
|
|
|
|
|
2017-10-10 12:22:57 +03:00
|
|
|
# Run PWA-score tests
|
|
|
|
# (Run before unit and e2e tests, which destroy the `dist/` directory.)
|
|
|
|
travisFoldStart "test.aio.pwaScore"
|
|
|
|
yarn test-pwa-score-localhost
|
|
|
|
travisFoldEnd "test.aio.pwaScore"
|
|
|
|
|
2018-05-10 13:38:45 +01:00
|
|
|
# Check the bundle sizes.
|
|
|
|
# (Run before unit and e2e tests, which destroy the `dist/` directory.)
|
|
|
|
travisFoldStart "test.aio.payload-size"
|
|
|
|
yarn payload-size
|
|
|
|
travisFoldEnd "test.aio.payload-size"
|
2017-10-10 12:22:57 +03:00
|
|
|
|
2017-03-05 01:49:10 -08:00
|
|
|
# Run unit tests
|
|
|
|
travisFoldStart "test.aio.unit"
|
2018-05-18 13:28:12 +03:00
|
|
|
yarn test --watch=false
|
2017-03-05 01:49:10 -08:00
|
|
|
travisFoldEnd "test.aio.unit"
|
|
|
|
|
2017-11-15 13:30:39 +02:00
|
|
|
# Run e2e tests
|
|
|
|
travisFoldStart "test.aio.e2e"
|
2018-04-13 21:21:17 +03:00
|
|
|
yarn e2e
|
2017-11-15 13:30:39 +02:00
|
|
|
travisFoldEnd "test.aio.e2e"
|
|
|
|
|
2018-04-15 23:46:17 +03:00
|
|
|
# Run unit tests for Firebase redirects
|
|
|
|
travisFoldStart "test.aio.redirects"
|
|
|
|
yarn redirects-test
|
|
|
|
travisFoldEnd "test.aio.redirects"
|
2017-11-15 13:30:39 +02:00
|
|
|
|
2017-03-02 00:39:37 +02:00
|
|
|
# Run unit tests for aio/aio-builds-setup
|
|
|
|
travisFoldStart "test.aio.aio-builds-setup"
|
2017-03-07 11:36:41 +02:00
|
|
|
./aio-builds-setup/scripts/test.sh
|
2017-03-02 00:39:37 +02:00
|
|
|
travisFoldEnd "test.aio.aio-builds-setup"
|
2017-03-05 01:49:10 -08:00
|
|
|
)
|