-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(Saucelabs): test on IE9, IE10 and IE11.
Fixes #2344. This moves the selection of the browsers to test to the travis build script. The number of concurrent travis jobs should be limited to 5 (Saucelabs limit). This also removes the S3 env variable which does nothing This uses a fork of karma-sauce-launcher, which contains upated dependencies, in order to support retries: karma-runner/karma-sauce-launcher#114
- Loading branch information
1 parent
4eada55
commit ac6fc66
Showing
3 changed files
with
74 additions
and
55 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 |
---|---|---|
|
@@ -33,11 +33,43 @@ matrix: | |
env: TARGET=test-node | ||
- node_js: '7' | ||
env: TARGET=lint | ||
# phantomjs | ||
- node_js: '7' | ||
env: TARGET=test-browser S3=1 | ||
env: TARGET=test-browser | ||
# chrome | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="chrome@latest" PLATFORM="Windows 8" | ||
# edge | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="MicrosoftEdge@latest" PLATFORM="Windows 10" | ||
# ie11 | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="internet [email protected]" PLATFORM="Windows 8.1" | ||
# ie10 | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="internet [email protected]" PLATFORM="Windows 8" | ||
# ie9 | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="internet [email protected]" PLATFORM="Windows 7" | ||
# ie8 | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="internet [email protected]" PLATFORM="Windows 7" | ||
# ie7 | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="internet [email protected]" PLATFORM="Windows XP" | ||
# firefox | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="firefox@latest" PLATFORM="Windows 8.1" | ||
# safari | ||
- node_js: '7' | ||
env: TARGET=test-browser BROWSER="safari@latest" PLATFORM="OS X 10.11" | ||
|
||
before_install: scripts/travis-before-install.sh | ||
|
||
install: | ||
- npm install | ||
- cd node_modules && ln -nsf @coderbyheart/karma-sauce-launcher karma-sauce-launcher && cd ../ | ||
|
||
before_script: scripts/travis-before-script.sh | ||
|
||
script: make $TARGET | ||
|
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
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