mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-12 22:45:52 +08:00
- parallelize the tasks - cache requests (e2e tests) This reduces the time from ~18min to ~12min. It makes the output little messy. We could buffer output of each task and display it once it's fully finished, nicely. I think giving instant feedback is better.
25 lines
486 B
JavaScript
25 lines
486 B
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'
|
|
}
|
|
}
|
|
});
|
|
};
|