-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkarma.conf.js
59 lines (51 loc) · 1.36 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
module.exports = function (config) {
'use strict';
let configuration = {
basePath: '',
frameworks: ['jasmine'],
files: [
'./public/components/button.js',
'./public/components/form.js',
'./public/components/menu.js',
'./public/components/message.js',
'./public/components/scoreboard.js',
'./public/modules/**/*.js',
'./public/views/**/*.js',
'./test/**/*.spec.js'
],
reporters: ['progress', 'coverage', 'spec'],
preprocessors: {
'./public/components/**/*.js': ['coverage'],
'./public/modules/**/*.js': ['coverage'],
'./public/views/**/*.js': ['coverage']
},
port: 9876,
colors: true,
autoWatch: false,
singleRun: false,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
plugins: [
'karma-jasmine',
'karma-chrome-launcher',
'karma-coverage',
'karma-spec-reporter'
],
browsers: ['Chrome'],
customLaunchers: {
Chrome_travis_ci: {
base: 'Chrome',
flags: ['---no-sandbox']
}
},
coverageReporter: {
type: 'html',
dir: 'public/coverage/'
}
};
if (process.env.TRAVIS) {
configuration.browsers = ['Chrome_travis_ci']
}
config.set(configuration)
};