-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use latest node on travis beta. Install chrome.
- Loading branch information
Showing
1 changed file
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
sudo: required | ||
dist: trusty | ||
language: node_js | ||
node_js: | ||
- "4" | ||
- "node" | ||
addons: | ||
# From some tests it seems you can only have one firefox addon. | ||
# Adding two results in the last one defined being the one installed. | ||
firefox: latest | ||
apt: | ||
sources: | ||
- google-chrome | ||
packages: | ||
- google-chrome-stable | ||
before_install: | ||
- sudo apt-get update -qq | ||
before_script: | ||
- "export DISPLAY=:99.0" | ||
- "sh -e /etc/init.d/xvfb start" | ||
- npm install -g web-component-tester | ||
- npm install -g bower | ||
- bower install | ||
script: | ||
- wct -l chrome . | ||
- wct --skip-plugin sauce --plugin local -l chrome |