mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
Also instead of running everything in parallel, there are only two parallel tasks: - e2e tests running in the background (only on Chrome) - all the unit tests running sequentially
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
module.exports = function(config) {
|
|
config.set({
|
|
frameworks: ['jasmine'],
|
|
autoWatch: true,
|
|
logLevel: config.LOG_INFO,
|
|
logColors: true,
|
|
browsers: ['Chrome'],
|
|
runnerPort: 0,
|
|
|
|
// config for Travis CI
|
|
sauceLabs: {
|
|
testName: 'AngularJS',
|
|
startConnect: false,
|
|
tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER
|
|
},
|
|
|
|
customLaunchers: {
|
|
'SL_Chrome': {
|
|
base: 'SauceLabs',
|
|
browserName: 'chrome'
|
|
},
|
|
'SL_Firefox': {
|
|
base: 'SauceLabs',
|
|
browserName: 'firefox'
|
|
},
|
|
'SL_Safari': {
|
|
base: 'SauceLabs',
|
|
browserName: 'safari',
|
|
platform: 'Mac 10.8',
|
|
version: '6'
|
|
},
|
|
'SL_IE_8': {
|
|
base: 'SauceLabs',
|
|
browserName: 'internet explorer',
|
|
platform: 'Windows 7',
|
|
version: '8'
|
|
},
|
|
'SL_IE_9': {
|
|
base: 'SauceLabs',
|
|
browserName: 'internet explorer',
|
|
platform: 'Windows 2008',
|
|
version: '9'
|
|
},
|
|
'SL_IE_10': {
|
|
base: 'SauceLabs',
|
|
browserName: 'internet explorer',
|
|
platform: 'Windows 2012',
|
|
version: '10'
|
|
}
|
|
}
|
|
});
|
|
};
|