forked from summernote/summernote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
39 lines (33 loc) · 931 Bytes
/
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
var webpackConfig = require('./config/webpack.config.karma.js');
module.exports = function (config) {
config.set({
frameworks: ['mocha', 'webpack', 'detectBrowsers', ],
colors: true,
logLevel: config.LOG_INFO,
files: [
'node_modules/jquery/dist/jquery.js',
{ pattern: 'src/js/**/*.js' },
{ pattern: 'test/**/*.spec.js' }
],
detectBrowsers: {
enabled: true,
usePhantomJS: false,
preferHeadless: true,
postDetection: function(availableBrowsers) {
return (config.browsers.length === 0) ? availableBrowsers.slice(0, 1) : [];
}
},
preprocessors: {
'src/js/**/*.js': ['webpack', ],
'test/**/*.spec.js': ['webpack', ],
},
webpack: webpackConfig,
reporters: ['dots'],
coverageReporter: {
type: 'lcov',
dir: 'coverage/',
includeAllSources: true
},
browserNoActivityTimeout: 60000,
});
};