-
Notifications
You must be signed in to change notification settings - Fork 114
/
karma.conf.js
39 lines (38 loc) · 1 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
/* eslint-env node */
'use strict';
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine', 'sinon'],
files: [
'src/taggle.js',
'__tests__/**/*-test.js'
],
plugins: [
require('karma-jasmine'),
require('karma-sinon'),
require('karma-coverage'),
require('karma-chrome-launcher')
],
preprocessors: {
'src/taggle.js': ['coverage']
},
webpackMiddleware: {
noInfo: true
},
coverageReporter: {
dir: 'coverage/',
reporters: [
// { type: 'html', subdir: 'report-html' },
{ type: 'lcov', subdir: 'report-lcov' }
]
},
reporters: ['progress', 'coverage'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['ChromeHeadless'],
singleRun: false
});
};