mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
This should not affect the Jenkins build at all. Now, the Travis build uses Chrome on Sauce Labs, which in theory gives us opportunity to use any browser/platform that Sauce Labs offers.
23 lines
467 B
JavaScript
23 lines
467 B
JavaScript
module.exports = function(config) {
|
|
config.set({
|
|
frameworks: ['jasmine'],
|
|
autoWatch: true,
|
|
logLevel: config.LOG_INFO,
|
|
logColors: true,
|
|
browsers: ['Chrome'],
|
|
|
|
// config for Travis CI
|
|
sauceLabs: {
|
|
testName: 'AngularJS',
|
|
startConnect: false,
|
|
tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER
|
|
},
|
|
|
|
customLaunchers: {
|
|
'SL_Chrome': {
|
|
base: 'SauceLabs',
|
|
browserName: 'chrome'
|
|
}
|
|
}
|
|
});
|
|
};
|