Don't test on safari locally, but test it on TravisCI

This commit is contained in:
Piotr Sarnacki 2015-02-05 12:46:44 +01:00
parent 37cae3987b
commit 6584d4c885

View File

@ -4,13 +4,13 @@
"launch_in_ci": [ "launch_in_ci": [
"PhantomJS", "PhantomJS",
"SL_chrome", "SL_chrome",
"SL_firefox" "SL_firefox",
"SL_safari"
], ],
"launch_in_dev": [ "launch_in_dev": [
"PhantomJS", "PhantomJS",
"Chrome", "Chrome",
"Firefox", "Firefox"
"Safari"
], ],
"launchers": { "launchers": {
"SL_chrome": { "SL_chrome": {
@ -38,6 +38,19 @@
"--u" "--u"
], ],
"protocol": "browser" "protocol": "browser"
},
"SL_safari": {
"exe": "./node_modules/.bin/ember-cli-sauce",
"args": [
"-b",
"safari",
"-p",
"Mac 10.10",
"--at",
"--no-ct",
"--u"
],
"protocol": "browser"
} }
} }
} }