mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-13 17:02:23 +08: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.
18 lines
405 B
JavaScript
18 lines
405 B
JavaScript
var angularFiles = require('./angularFiles');
|
|
var sharedConfig = require('./karma-shared.conf');
|
|
|
|
module.exports = function(config) {
|
|
sharedConfig(config);
|
|
|
|
config.set({
|
|
files: angularFiles.mergeFilesFor('karmaModules', 'angularSrcModules'),
|
|
|
|
junitReporter: {
|
|
outputFile: 'test_out/modules.xml',
|
|
suite: 'modules'
|
|
}
|
|
});
|
|
|
|
config.sauceLabs.testName = 'AngularJS: modules';
|
|
};
|