mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-12 22:45:52 +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.
19 lines
443 B
JavaScript
19 lines
443 B
JavaScript
var angularFiles = require('./angularFiles');
|
|
var sharedConfig = require('./karma-shared.conf');
|
|
|
|
module.exports = function(config) {
|
|
sharedConfig(config);
|
|
|
|
config.set({
|
|
files: angularFiles.mergeFilesFor('karmaJquery'),
|
|
exclude: angularFiles.mergeFilesFor('karmaJqueryExclude'),
|
|
|
|
junitReporter: {
|
|
outputFile: 'test_out/jquery.xml',
|
|
suite: 'jQuery'
|
|
}
|
|
});
|
|
|
|
config.sauceLabs.testName = 'AngularJS: jQuery';
|
|
};
|