-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
executable file
·84 lines (68 loc) · 2.25 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Karma configuration
// http://karma-runner.github.io/0.10/config/configuration-file.html
module.exports = function(config) {
config.set({
// base path, that will be used to resolve files and exclude
basePath: './',
// testing framework to use (jasmine/mocha/qunit/...)
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'node_modules/jasmine-expect/dist/jasmine-matchers.js',
'app/libs/angular/angular.js',
'app/libs/angular-mocks/angular-mocks.js',
'app/libs/angular-resource/angular-resource.js',
'app/libs/angular-cookies/angular-cookies.js',
'app/libs/angular-sanitize/angular-sanitize.js',
'app/libs/angular-ui-router/release/angular-ui-router.min.js',
'app/libs/angular-charts/dist/angular-charts.js',
'app/libs/angular-bootstrap/ui-bootstrap.min.js',
'app/libs/lodash/dist/lodash.min.js',
'dist/scripts/*.js',
'dist/scripts/**/*.js',
'test/mock/**/*.js',
'test/spec/**/*.js',
//load directives templates
'dist/views/directives/*.html'
],
// list of files / patterns to exclude
exclude: [],
// web server port
port: 8080,
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_DEBUG,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
// Plugins
plugins: [
'karma-jasmine',
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-coverage',
'karma-ng-html2js-preprocessor'
],
ngHtml2JsPreprocessor: {
// strip this from the file path
stripPrefix: 'dist/'
},
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
browsers: ['Chrome'], //, 'Firefox'],
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false,
//Code Coverage
reporters: ['progress', 'coverage'],
preprocessors: {
'dist/scripts/**/*.js': ['coverage'],
'dist/views/directives/*.html': 'ng-html2js'
}
});
};