mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00: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
431 B
JavaScript
18 lines
431 B
JavaScript
var angularFiles = require('./angularFiles');
|
|
var sharedConfig = require('./karma-shared.conf');
|
|
|
|
module.exports = function(config) {
|
|
sharedConfig(config);
|
|
|
|
config.set({
|
|
files: angularFiles.mergeFilesFor('karma'),
|
|
exclude: angularFiles.mergeFilesFor('karmaExclude'),
|
|
|
|
junitReporter: {
|
|
outputFile: 'test_out/jqlite.xml',
|
|
suite: 'jqLite'
|
|
}
|
|
});
|
|
|
|
config.sauceLabs.testName = 'AngularJS: jqLite';
|
|
};
|