Simplify testem logic and remove console logging

This commit is contained in:
Curtis Ekstrom 2016-04-12 23:04:08 +02:00
parent 8cd14b8952
commit 8de13d1949
No known key found for this signature in database
GPG Key ID: CDE831E4F18FEB65

View File

@ -1,15 +1,10 @@
/*jshint node:true*/
var launchInCI = function() {
if (process.env.TRAVIS) {
if (process.env.TRAVIS_PULL_REQUEST) {
console.log('will run with phantom');
return ['PhantomJS'];
} else {
return ['SL_chrome', 'SL_firefox'];
}
} else {
if (!process.env.TRAVIS || process.env.TRAVIS_PULL_REQUEST) {
return ['PhantomJS'];
} else {
return ['SL_chrome', 'SL_firefox'];
}
};