forked from nabil-boag/angular-http-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma-unit.conf.js
50 lines (43 loc) · 1 KB
/
karma-unit.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
48
49
50
/* global module */
// Karma configuration
// http://karma-runner.github.io/0.10/config/configuration-file.html
module.exports = function(config) {
config.set({
basePath: 'app/build',
plugins: [
'karma-jasmine',
'karma-coverage',
'karma-spec-reporter',
'karma-firefox-launcher',
'karma-phantomjs-launcher',
'karma-chrome-launcher'
],
port: 9876,
captureTimeout: 60000,
frameworks: ['jasmine'],
files: [
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'js/httpMethodInterceptor.js',
'js/httpLoader.js',
'js/**/*.spec.js',
],
preprocessors: {
'./**/*.js': 'coverage'
},
/**
* How to report, by default.
*/
reporters: ['coverage', 'dots', 'spec'],
coverageReporter: {
type : 'html',
dir : '../../coverage/'
},
logLevel: config.LOG_DEBUG,
singleRun: true,
browsers: [
'Chrome',
'Firefox'
]
});
};