mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
Forward SauceConnect logs and Karma debug logs into a file and print these files at the very end of a build.
16 lines
453 B
JavaScript
16 lines
453 B
JavaScript
var angularFiles = require('./angularFiles');
|
|
var sharedConfig = require('./karma-shared.conf');
|
|
|
|
module.exports = function(config) {
|
|
sharedConfig(config, {testName: 'AngularJS: jQuery', logFile: 'karma-jquery.log'});
|
|
|
|
config.set({
|
|
files: angularFiles.mergeFilesFor('karmaJquery'),
|
|
exclude: angularFiles.mergeFilesFor('karmaJqueryExclude'),
|
|
|
|
junitReporter: {
|
|
outputFile: 'test_out/jquery.xml',
|
|
suite: 'jQuery'
|
|
}
|
|
});
|
|
};
|