diff options
| author | Chris Rebert <[email protected]> | 2016-03-15 22:34:40 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-03-15 22:34:40 -0700 |
| commit | cd64975f4812ad5a88518770af39dfed4b110629 (patch) | |
| tree | 967a7579c1d8f1ed9ad33c5286fd5e67188782d8 | |
| parent | ff2441bbd8adaf17cc9e6f0c4e9af45ef2acc8a7 (diff) | |
| parent | b62d841c1c016ab5d7d84146be92bdfe6b28e46a (diff) | |
| download | bootstrap-cd64975f4812ad5a88518770af39dfed4b110629.tar.xz bootstrap-cd64975f4812ad5a88518770af39dfed4b110629.zip | |
Merge pull request #19552 from twbs/sauce-latest
Use "latest" version specifier (when applicable) in Sauce tests
| -rw-r--r-- | grunt/sauce_browsers.yml | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/grunt/sauce_browsers.yml b/grunt/sauce_browsers.yml index 2df1b5c11..fef8e642f 100644 --- a/grunt/sauce_browsers.yml +++ b/grunt/sauce_browsers.yml @@ -1,5 +1,5 @@ [ - # Docs: https://saucelabs.com/docs/platforms/webdriver + # Docs: https://wiki.saucelabs.com/display/DOCS/Platform+Configurator { browserName: "safari", @@ -7,18 +7,21 @@ }, { browserName: "chrome", - platform: "OS X 10.11" + platform: "OS X 10.11", + version: "latest" }, { browserName: "firefox", - platform: "OS X 10.11" + platform: "OS X 10.11", + version: "latest" }, # Mac Opera not currently supported by Sauce Labs { browserName: "MicrosoftEdge", - platform: "Windows 10" + platform: "Windows 10", + version: "latest" }, { browserName: "internet explorer", @@ -38,11 +41,13 @@ { browserName: "chrome", - platform: "Windows 10" + platform: "Windows 10", + version: "latest" }, { browserName: "firefox", - platform: "Windows 10" + platform: "Windows 10", + version: "latest" }, # Win Opera 15+ not currently supported by Sauce Labs @@ -50,7 +55,7 @@ { browserName: "iphone", platform: "OS X 10.10", - version: "9.2" + version: "latest" }, # iOS Chrome not currently supported by Sauce Labs @@ -58,11 +63,13 @@ # Linux (unofficial) { browserName: "chrome", - platform: "Linux" + platform: "Linux", + version: "latest" }, { browserName: "firefox", - platform: "Linux" + platform: "Linux", + version: "latest" } # Android Chrome not currently supported by Sauce Labs |
