Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit b290244

Browse files
committed
chore(travis): move docse2e tests into the unit tests vm
we spend more time making getting the build ready than running the docs e2e tests. by piggy-backing on unit tests we'll finish the build faster
1 parent 202aed7 commit b290244

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ env:
1111
- JOB=unit
1212
- JOB=e2e TEST_TARGET=jqlite
1313
- JOB=e2e TEST_TARGET=jquery
14-
- JOB=e2e TEST_TARGET=doce2e
1514
global:
1615
- SAUCE_USERNAME=angular-ci
1716
- SAUCE_ACCESS_KEY=9b988f434ff8-fbca-8aa4-4ae3-35442987

scripts/travis/build.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@ if [ $JOB = "unit" ]; then
99
grunt test:promises-aplus
1010
grunt test:unit --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
1111
grunt tests:docs --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
12+
grunt test:travis-protractor --specs "docs/app/e2e/docsAppE2E.js"
1213
elif [ $JOB = "e2e" ]; then
1314
export TARGET_SPECS="build/docs/ptore2e/**/*jqlite_test.js"
1415
if [ $TEST_TARGET = "jquery" ]; then
1516
TARGET_SPECS="build/docs/ptore2e/**/*jquery_test.js"
16-
elif [ $TEST_TARGET = "doce2e" ]; then
17-
TARGET_SPECS="docs/app/e2e/docsAppE2E.js"
1817
fi
1918
grunt test:travis-protractor --specs "$TARGET_SPECS"
2019
else

0 commit comments

Comments
 (0)