forked from summernote/summernote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.debug.conf.js
More file actions
36 lines (30 loc) · 767 Bytes
/
karma.debug.conf.js
File metadata and controls
36 lines (30 loc) · 767 Bytes
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
var webpackConfig = require('./config/webpack.config.dev.js');
module.exports = function (config) {
config.set({
frameworks: ['mocha'],
colors: true,
logLevel: config.LOG_INFO,
browsers: ['ChromeDebug'],
customLaunchers: {
ChromeDebug: {
base: "Chrome",
flags: ["--remote-debugging-port=9333"]
}
},
files: [
'node_modules/jquery/dist/jquery.js',
{ pattern: 'src/js/**/*.js' },
{ pattern: 'test/**/*.spec.js' }
],
preprocessors: {
'src/js/**/*.js': ['webpack', ],
'test/**/*.spec.js': ['webpack', ],
},
webpack: webpackConfig,
webpackMiddleware: {
stats: 'errors-only',
},
reporters: ['dots'],
browserNoActivityTimeout: 60000,
});
};