Skip to content

Commit

Permalink
ci: run e2e tests against ng 6.0.0-beta.8
Browse files Browse the repository at this point in the history
  • Loading branch information
clydin authored and filipesilva committed Mar 21, 2018
1 parent e4a6f59 commit 532602b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ test_script:
- npm --version
- npm run test:packages
- npm run test:cli
- node tests\run_e2e.js --appveyor "--glob=tests/{basic,commands,generate,build/styles}/**"
- node tests\run_e2e.js --appveyor --ng-version="6.0.0-beta.8" "--glob=tests/{basic,commands,generate,build/styles}/**"

build: off

Expand Down
13 changes: 9 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,25 @@ matrix:
env: test
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=0 --nosilent
script: node tests/run_e2e.js --nb-shards=4 --shard=0 --nosilent --ng-version="6.0.0-beta.8"
env: e2e-0
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=1 --nosilent
script: node tests/run_e2e.js --nb-shards=4 --shard=1 --nosilent --ng-version="6.0.0-beta.8"
env: e2e-1
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=2 --nosilent
script: node tests/run_e2e.js --nb-shards=4 --shard=2 --nosilent --ng-version="6.0.0-beta.8"
env: e2e-2
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=3 --nosilent
script: node tests/run_e2e.js --nb-shards=4 --shard=3 --nosilent --ng-version="6.0.0-beta.8"
env: e2e-3
- node_js: "8"
os: linux
script: node tests/run_e2e.js --ng-version="^5.0.0" "--glob=tests/{basic,build}/**"
env: ng5-subset

# WEBPACK4_DISABLED - eject temporarily disabled for webpack 4 integration
# - node_js: "8"
# os: linux
Expand Down

0 comments on commit 532602b

Please sign in to comment.