-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
186 lines (165 loc) · 4.97 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// Karma configuration
// Generated on Thu Mar 09 2017 20:37:59 GMT+0300 (MSK)
const webpackConfig = require('./webpack.config');
const isparta = require('isparta');
module.exports = function karmaConfig(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: [
'mocha',
'chai',
// 'chai-as-promised',
'sinon',
'sinon-chai',
],
// list of files / patterns to load in the browser
files: [
// 'node_modules/jasmine-promises/dist/jasmine-promises.js',
// 'node_modules/babel/browser-polyfill.js',
'test/**/*.js',
],
// list of files to exclude
exclude: [],
plugins: [
'karma-eslint',
'karma-webpack',
'karma-mocha',
'karma-chai',
'karma-sinon',
'karma-sinon-chai',
'karma-coverage',
// 'karma-chai-as-promised',
'karma-phantomjs-launcher',
'karma-chrome-launcher',
// 'karma-firefox-launcher',
'karma-html-detailed-reporter',
'karma-coverage-istanbul-reporter',
'karma-html-detailed-reporter',
// 'karma-babel-preprocessor',
'karma-log-reporter',
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'test/**/*.js': [
// 'eslint', TODO Add eslint check
'webpack',
],
'src/**/*.js': [
'coverage',
// 'eslint',
// 'webpack'
],
},
webpack: webpackConfig,
// Optionally, configure the reporter
// htmlDetailed: {
// splitResults: true
// },
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: [
'progress',
'dots',
'coverage',
// 'verbose',
// 'log-reporter',
// 'coverage-istanbul',
// 'htmlDetailed'
],
logReporter: {
outputPath: '_reports/logs/',
// default name is current directory
logFileName: 'logfile.log',
// default name is logFile_month_day_year_hr:min:sec.log
},
coverageReporter: {
type: 'html',
dir: 'coverage/',
instrumenters: { isparta },
// instrumenter: {
// 'src/**/*.js': 'isparta',
// },
},
webpackMiddleware: {
noInfo: true,
},
// any of these options are valid: https://github.com/istanbuljs/istanbul-api/blob/47b7803fbf7ca2fb4e4a15f3813a8884891ba272/lib/config.js#L33-L38
// coverageIstanbulReporter: {
//
// // reports can be any that are listed here: https://github.com/istanbuljs/istanbul-reports/tree/590e6b0089f67b723a1fdf57bc7ccc080ff189d7/lib
// reports: [
// 'html',
// 'lcovonly',
// 'text-summary',
// ],
//
// // base output directory
// dir: './coverage',
//
// // if using webpack and pre-loaders, work around webpack breaking the source path
// fixWebpackSourcePaths: true,
//
// // Most reporters accept additional config options. You can pass
// // these through the `report-config` option
// 'report-config': {
//
// // all options available at: https://github.com/istanbuljs/istanbul-reports/blob/590e6b0089f67b723a1fdf57bc7ccc080ff189d7/lib/html/index.js#L135-L137
// html: {
// // outputs the report in ./coverage/html
// subdir: 'html',
// },
//
// },
//
// // enforce percentage thresholds
// // anything under these percentages will cause karma to fail with
// // an exit code of 1 if not running in watch mode
// thresholds: {
// statements: 100,
// lines: 100,
// branches: 100,
// functions: 100,
// },
//
// },
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: [
// 'Chromium',
'PhantomJS',
// 'Firefox'
],
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR ||
// config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
// logLevel: config.LOG_INFO,
logLevel: config.LOG_DEBUG,
client: {
captureConsole: true,
chai: {
includeStack: true,
},
// browserConsoleLogOptions: true,
// mocha: {
// bail: true
// },
},
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity,
});
};