mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-19 16:54:24 +01:00
Convert sauce_browser.yml to JSON.
This commit is contained in:
parent
2244d03b34
commit
b001118c98
64
build/sauce_browsers.json
Normal file
64
build/sauce_browsers.json
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"browserName": "safari",
|
||||||
|
"platform": "OS X 10.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "chrome",
|
||||||
|
"platform": "OS X 10.11",
|
||||||
|
"version": "latest"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "firefox",
|
||||||
|
"platform": "OS X 10.11",
|
||||||
|
"version": "latest"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "MicrosoftEdge",
|
||||||
|
"platform": "Windows 10",
|
||||||
|
"version": "latest"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "internet explorer",
|
||||||
|
"version": "11",
|
||||||
|
"platform": "Windows 8.1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "internet explorer",
|
||||||
|
"version": "10",
|
||||||
|
"platform": "Windows 8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "chrome",
|
||||||
|
"platform": "Windows 10",
|
||||||
|
"version": "latest"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "firefox",
|
||||||
|
"platform": "Windows 10",
|
||||||
|
"version": "latest"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "iphone",
|
||||||
|
"deviceName": "iPhone Simulator",
|
||||||
|
"platformName": "OS X 10.11",
|
||||||
|
"version": "9.3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "chrome",
|
||||||
|
"platform": "Linux",
|
||||||
|
"version": "latest"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"browserName": "firefox",
|
||||||
|
"platform": "Linux",
|
||||||
|
"version": "latest"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"platform": "Linux",
|
||||||
|
"browserName": "android",
|
||||||
|
"deviceName": "Android Emulator",
|
||||||
|
"version": "latest",
|
||||||
|
"deviceType": "phone"
|
||||||
|
}
|
||||||
|
]
|
@ -1,79 +0,0 @@
|
|||||||
[
|
|
||||||
# Docs: https://wiki.saucelabs.com/display/DOCS/Platform+Configurator
|
|
||||||
|
|
||||||
{
|
|
||||||
browserName: "safari",
|
|
||||||
platform: "OS X 10.11"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
browserName: "chrome",
|
|
||||||
platform: "OS X 10.11",
|
|
||||||
version: "latest"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
browserName: "firefox",
|
|
||||||
platform: "OS X 10.11",
|
|
||||||
version: "latest"
|
|
||||||
},
|
|
||||||
|
|
||||||
# Mac Opera not currently supported by Sauce Labs
|
|
||||||
|
|
||||||
{
|
|
||||||
browserName: "MicrosoftEdge",
|
|
||||||
platform: "Windows 10",
|
|
||||||
version: "latest"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
browserName: "internet explorer",
|
|
||||||
version: "11",
|
|
||||||
platform: "Windows 8.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
browserName: "internet explorer",
|
|
||||||
version: "10",
|
|
||||||
platform: "Windows 8"
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
browserName: "chrome",
|
|
||||||
platform: "Windows 10",
|
|
||||||
version: "latest"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
browserName: "firefox",
|
|
||||||
platform: "Windows 10",
|
|
||||||
version: "latest"
|
|
||||||
},
|
|
||||||
|
|
||||||
# Win Opera 15+ not currently supported by Sauce Labs
|
|
||||||
|
|
||||||
{
|
|
||||||
browserName: "iphone",
|
|
||||||
deviceName: "iPhone Simulator",
|
|
||||||
platformName: "OS X 10.11",
|
|
||||||
version: "9.3"
|
|
||||||
},
|
|
||||||
|
|
||||||
# iOS Chrome not currently supported by Sauce Labs
|
|
||||||
|
|
||||||
# Linux (unofficial)
|
|
||||||
{
|
|
||||||
browserName: "chrome",
|
|
||||||
platform: "Linux",
|
|
||||||
version: "latest"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
browserName: "firefox",
|
|
||||||
platform: "Linux",
|
|
||||||
version: "latest"
|
|
||||||
},
|
|
||||||
|
|
||||||
# Android
|
|
||||||
{
|
|
||||||
platform: "Linux",
|
|
||||||
browserName: "android",
|
|
||||||
deviceName: "Android Emulator",
|
|
||||||
version: "latest",
|
|
||||||
deviceType: "phone"
|
|
||||||
}
|
|
||||||
]
|
|
@ -8,6 +8,10 @@ const jsUnitSaucelabs = new JSUnitSaucelabs({
|
|||||||
|
|
||||||
|
|
||||||
// TODO : get all the browsers in sauce_browsers.yml
|
// TODO : get all the browsers in sauce_browsers.yml
|
||||||
|
// Docs: https://wiki.saucelabs.com/display/DOCS/Platform+Configurator
|
||||||
|
// Mac Opera is not currently supported by Sauce Labs
|
||||||
|
// Win Opera 15+ is not currently supported by Sauce Labs
|
||||||
|
// iOS Chrome is not currently supported by Sauce Labs
|
||||||
|
|
||||||
const testURL = 'http://localhost:3000/js/tests/index.html?hidepassed'
|
const testURL = 'http://localhost:3000/js/tests/index.html?hidepassed'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user