![]()
Cannot retrieve contributors at this time
| 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' | |
| } | |
| } | |
| }); | |
| }; |