Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
tree: 1bdca93d70
22 lines (17 sloc) 0.439 kb
'use strict';
var sharedConfig = require('./karma-shared.conf');
module.exports = function(config) {
sharedConfig(config, {testName: 'AngularJS: docs', logFile: 'karma-docs.log'});
config.set({
files: [
'build/angular.js',
'build/angular-mocks.js',
'docs/app/src/**/*.js',
'docs/app/test/**/*Spec.js'
],
junitReporter: {
outputFile: 'test_out/docs.xml',
suite: 'Docs'
}
});
};
Jump to Line
Something went wrong with that request. Please try again.