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