Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Try Headless Firefox #1116

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ language: node_js
node_js:
- "node"

addons:
firefox: "60.0.2"

git:
depth: 3

Expand All @@ -31,6 +28,8 @@ jobs:

- stage: Test
name: AVA Regression Tests
addons:
firefox: latest
before_install:
- |
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qE '(test/|examples/)'
Expand All @@ -39,7 +38,9 @@ jobs:
exit
fi
script: ava -c 1 test/tests
env: TEST_WAIT_TIME=1000
env:
- TEST_WAIT_TIME=1000
- MOZ_HEADLESS=1
- stage: Test
name: Regression Tests Coverage Report
script: node test/util/report.js
Expand Down