-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkarma.conf.js
48 lines (46 loc) · 1.03 KB
/
karma.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module.exports = function(config) {
'use strict';
config.set({
basePath: '',
files: [
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'angular-centered.js',
'test/unit/**/*.js'
],
browsers: ['PhantomJS'],
frameworks: [
'jasmine'
],
reporters: ['progress', 'coverage', 'notify'],
preprocessors: {
'public/app/**/*.js': ['coverage'],
'public/components/**/*.js': ['coverage']
},
plugins: [
'karma-phantomjs-launcher',
'karma-coverage',
'karma-jasmine',
'karma-junit-reporter',
'karma-notify-reporter'
],
notifyReporter: {
reportEachFailure: true,
reportSuccess: false
},
coverageReporter: {
reporters: [{
type: 'html',
subdir: 'report-html'
}, {
type: 'lcov',
subdir: 'report-lcov'
},
{
type: 'text-summary',
subdir: 'report-summary',
file: 'text-summary.txt'
}]
}
});
};