Limit contributers display. Fixes #13
[roll.divinelegy.git] / karma.conf.js
1 module.exports = function(config){
2 config.set({
3
4 basePath : './',
5
6 files : [
7 'app/bower_components/angular/angular.js',
8 'app/bower_components/angular-route/angular-route.js',
9 'app/bower_components/angular-mocks/angular-mocks.js',
10 'app/components/**/*.js',
11 'app/view*/**/*.js'
12 ],
13
14 autoWatch : true,
15
16 frameworks: ['jasmine'],
17
18 browsers : ['Chrome'],
19
20 plugins : [
21 'karma-chrome-launcher',
22 'karma-firefox-launcher',
23 'karma-jasmine',
24 'karma-junit-reporter'
25 ],
26
27 junitReporter : {
28 outputFile: 'test_out/unit.xml',
29 suite: 'unit'
30 }
31
32 });
33 };