Skip to content

Commit

Permalink
debug test
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva committed Mar 20, 2017
1 parent 58299dd commit 79c68a8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 30 deletions.
61 changes: 32 additions & 29 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,39 @@ matrix:
include:
- node_js: "6"
os: linux
env: SCRIPT=lint
- node_js: "6"
os: linux
env: SCRIPT=build
- node_js: "6"
os: linux
env: SCRIPT=test
- node_js: "6"
os: linux
env: NODE_SCRIPT="tests/run_e2e.js --glob=tests/build/**"
- node_js: "6"
os: linux
env: NODE_SCRIPT="tests/run_e2e.js --eject --glob=tests/build/**"
- node_js: "6"
os: linux
env: NODE_SCRIPT="tests/run_e2e.js --ignore=**/tests/build/**"
- node_js: "6"
os: linux
env: NODE_SCRIPT="tests/run_e2e.js --ng4 --glob=tests/build/**"
- node_js: "6"
os: linux
env: NODE_SCRIPT="tests/run_e2e.js --ng4 --ignore=**/tests/build/**"
env: NODE_SCRIPT="tests/run_e2e.js tests/e2e/tests/test/test-fail-watch.ts"
# - node_js: "6"
# os: linux
# env: SCRIPT=lint
# - node_js: "6"
# os: linux
# env: SCRIPT=build
# - node_js: "6"
# os: linux
# env: SCRIPT=test
# - node_js: "6"
# os: linux
# env: NODE_SCRIPT="tests/run_e2e.js --glob=tests/build/**"
# - node_js: "6"
# os: linux
# env: NODE_SCRIPT="tests/run_e2e.js --eject --glob=tests/build/**"
# - node_js: "6"
# os: linux
# env: NODE_SCRIPT="tests/run_e2e.js --ignore=**/tests/build/**"
# - node_js: "6"
# os: linux
# env: NODE_SCRIPT="tests/run_e2e.js --ng4 --glob=tests/build/**"
# - node_js: "6"
# os: linux
# env: NODE_SCRIPT="tests/run_e2e.js --ng4 --ignore=**/tests/build/**"

# Optional builds.
- node_js: "6"
os: linux
env: NODE_SCRIPT="tests/run_e2e.js --nightly --ng4"
- node_js: "7"
os: linux
env: NODE_SCRIPT=tests/run_e2e.js
# # Optional builds.
# - node_js: "6"
# os: linux
# env: NODE_SCRIPT="tests/run_e2e.js --nightly --ng4"
# - node_js: "7"
# os: linux
# env: NODE_SCRIPT=tests/run_e2e.js

before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export DISPLAY=:99.0; fi
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/utils/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export function execAndWaitForOutputToMatch(cmd: string, args: string[], match:
}

export function silentExecAndWaitForOutputToMatch(cmd: string, args: string[], match: RegExp) {
return _exec({ silent: true, waitForMatch: match }, cmd, args);
return _exec({ silent: false, waitForMatch: match }, cmd, args);
}


Expand Down

0 comments on commit 79c68a8

Please sign in to comment.