2017-03-14 17:11:39 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Second shard for the e2e tests. Balance it with runtime of test-e2e.sh
|
|
|
|
|
|
|
|
set -u -e -o pipefail
|
|
|
|
|
|
|
|
# Setup environment
|
|
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
|
|
source ${thisDir}/_travis-fold.sh
|
|
|
|
|
|
|
|
|
|
|
|
travisFoldStart "test.e2e.buildPackages"
|
|
|
|
./build.sh
|
|
|
|
travisFoldEnd "test.e2e.buildPackages"
|
|
|
|
|
|
|
|
|
|
|
|
travisFoldStart "test.e2e.integration"
|
|
|
|
./integration/run_tests.sh
|
|
|
|
travisFoldEnd "test.e2e.integration"
|
|
|
|
|
|
|
|
|
2018-03-12 22:26:25 -07:00
|
|
|
# TODO(i): temporarily disable this test because we don't have rxjs backwards compatibility package
|
|
|
|
# and cdk+material are not yet compatible with rxjs v6
|
|
|
|
# uncomment when we have cdk and material releases compatible with rxjs v6
|
|
|
|
#travisFoldStart "test.e2e.offlineCompiler"
|
|
|
|
# #TODO(alexeagle): move offline_compiler_test to integration/
|
|
|
|
# ${thisDir}/offline_compiler_test.sh
|
|
|
|
#travisFoldEnd "test.e2e.offlineCompiler"
|
2017-03-14 17:11:39 -07:00
|
|
|
|
2017-06-13 14:30:36 -07:00
|
|
|
travisFoldStart "test.e2e.platform-server"
|
|
|
|
./packages/platform-server/integrationtest/run_tests.sh
|
|
|
|
travisFoldEnd "test.e2e.platform-server"
|
2017-09-07 10:16:03 -07:00
|
|
|
|
|
|
|
travisFoldStart "test.e2e.source-maps"
|
|
|
|
./node_modules/.bin/gulp source-map-test
|
|
|
|
travisFoldEnd "test.e2e.source-maps"
|