Add SauceLabs tests on firefox and chrome

This commit is contained in:
Piotr Sarnacki 2015-02-05 10:35:56 +01:00
parent c6d4ecf78d
commit ff99ccab0b

View File

@ -2,10 +2,40 @@
"framework": "qunit", "framework": "qunit",
"test_page": "tests/index.html?hidepassed", "test_page": "tests/index.html?hidepassed",
"launch_in_ci": [ "launch_in_ci": [
"PhantomJS" "PhantomJS",
"SL_chrome",
"SL_firefox"
], ],
"launch_in_dev": [ "launch_in_dev": [
"PhantomJS", "PhantomJS",
"Chrome" "Chrome"
] ],
"launchers": {
"SL_chrome": {
"exe": "./node_modules/.bin/ember-cli-sauce",
"args": [
"-b",
"chrome",
"-p",
"Windows 8",
"--at",
"--no-ct",
"--u"
],
"protocol": "browser"
},
"SL_firefox": {
"exe": "./node_modules/.bin/ember-cli-sauce",
"args": [
"-b",
"firefox",
"-p",
"Windows 8",
"--at",
"--no-ct",
"--u"
],
"protocol": "browser"
}
}
} }