60 lines
1.1 KiB
JavaScript
60 lines
1.1 KiB
JavaScript
/*jshint node:true*/
|
|
|
|
var launchInCI = function() {
|
|
if (!process.env.TRAVIS || process.env.TRAVIS_PULL_REQUEST) {
|
|
return ['PhantomJS'];
|
|
} else {
|
|
return ['SL_chrome', 'SL_firefox'];
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
"framework": "qunit",
|
|
"test_page": "tests/index.html?hidepassed",
|
|
"launch_in_ci": launchInCI(),
|
|
"launch_in_dev": [
|
|
"PhantomJS"
|
|
],
|
|
"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"
|
|
},
|
|
"SL_safari": {
|
|
"exe": "./node_modules/.bin/ember-cli-sauce",
|
|
"args": [
|
|
"-b",
|
|
"safari",
|
|
"-p",
|
|
"Mac 10.10",
|
|
"--at",
|
|
"--no-ct",
|
|
"--u"
|
|
],
|
|
"protocol": "browser"
|
|
}
|
|
}
|
|
}
|