Files
angular.js/karma-docs.conf.js
Peter Bacon Darwin b72ea59019 chore(docs-app): re-activate docs-app test tasks
Currently there is only a minimal test spec in place. But this will now
be run as part of the test tasks.
2014-02-22 10:07:31 +00:00

20 lines
424 B
JavaScript

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'
}
});
};