This repository has been archived by the owner on Jul 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-enable all browsers on SauceLabs, minus IE6
- Loading branch information
1 parent
84c4aa2
commit dba1fa6
Showing
1 changed file
with
28 additions
and
28 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 |
---|---|---|
|
@@ -109,7 +109,7 @@ module.exports = function(config, gruntConfigOverride) { | |
|
||
// Concurrency level (added in `[email protected]`) | ||
// how many browser should be started simultanous | ||
concurrency: 3, // SauceLabs open-source limitation | ||
concurrency: 5, // SauceLabs open-source limitation | ||
|
||
customLaunchers: customLaunchers, | ||
|
||
|
@@ -178,47 +178,47 @@ function prefixTag(tagValue, tagPrefix) { | |
function generateCustomLaunchers() { | ||
var browsers = { | ||
"MicrosoftEdge": { | ||
//"20.10240": ["Windows 10"] | ||
"20.10240": ["Windows 10"] | ||
}, | ||
"internet explorer": { | ||
//"11.0": ["Windows 8.1"], | ||
//"10.0": ["Windows 8"], | ||
//"9.0": ["Windows 7"], | ||
//"8.0": ["Windows 7"], | ||
"7.0": ["Windows XP"], | ||
"6.0": ["Windows XP"] | ||
"11.0": ["Windows 8.1"], | ||
"10.0": ["Windows 8"], | ||
"9.0": ["Windows 7"], | ||
"8.0": ["Windows 7"], | ||
"7.0": ["Windows XP"] | ||
//, "6.0": ["Windows XP"] // IE6 always fails to connect and times out | ||
}, | ||
"firefox": { | ||
//"dev": ["Windows 7"], //, "OS X 10.10", "Linux"], | ||
//"beta": ["Windows 7", "OS X 10.10", "Linux"], | ||
//"": ["Windows 7", "OS X 10.10", "Linux"] | ||
"dev": ["Windows 7", "OS X 10.10", "Linux"], | ||
"beta": ["Windows 7", "OS X 10.10", "Linux"], | ||
"": ["Windows 7", "OS X 10.10", "Linux"] | ||
}, | ||
"chrome": { | ||
//"dev": ["Windows 7"], //, "OS X 10.10", "Linux"], | ||
//"beta": ["Windows 7", "OS X 10.10", "Linux"], | ||
//"": ["Windows 7", "OS X 10.10", "Linux"] | ||
"dev": ["Windows 7", "OS X 10.10", "Linux"], | ||
"beta": ["Windows 7", "OS X 10.10", "Linux"], | ||
"": ["Windows 7", "OS X 10.10", "Linux"] | ||
}, | ||
"safari": { | ||
//"9.0": ["OS X 10.11"], | ||
//"8.0": ["OS X 10.10"], | ||
//"7.0": ["OS X 10.9"], | ||
//"6.0": ["OS X 10.8"], | ||
//"5.1": ["Windows 7"] | ||
"9.0": ["OS X 10.11"], | ||
"8.0": ["OS X 10.10"], | ||
"7.0": ["OS X 10.9"], | ||
"6.0": ["OS X 10.8"], | ||
"5.1": ["Windows 7"] | ||
}, | ||
"opera": { | ||
//"12.15": ["Linux"], | ||
//"12.12": ["Windows 7"], | ||
//"11.64": ["Windows 7"] | ||
"12.15": ["Linux"], | ||
"12.12": ["Windows 7"], | ||
"11.64": ["Windows 7"] | ||
}, | ||
"android": { | ||
//"5.1": ["Linux"], | ||
//"4.4": ["Linux"], | ||
//"4.0": ["Linux"] | ||
"5.1": ["Linux"], | ||
"4.4": ["Linux"], | ||
"4.0": ["Linux"] | ||
}, | ||
"iphone": { | ||
//"9.2": ["OS X 10.10"], | ||
//"8.4": ["OS X 10.10"], | ||
//"7.1": ["OS X 10.10"] | ||
"9.2": ["OS X 10.10"], | ||
"8.4": ["OS X 10.10"], | ||
"7.1": ["OS X 10.10"] | ||
} | ||
}; | ||
|
||
|