UNPKG

395 BJavaScriptView Raw
1module.exports = function (config) {
2 config.set({
3 basePath: '',
4
5 frameworks: ['mocha'],
6
7 files: [
8 '*.js'
9 ],
10
11 exclude: [],
12
13 reporters: ['progress'],
14
15 port: 9876,
16
17 colors: true,
18
19 logLevel: config.LOG_INFO,
20
21 autoWatch: false,
22
23 browsers: ['Chrome'],
24
25 singleRun: false,
26
27 plugins: [
28 require('../../'),
29 'karma-mocha'
30 ]
31 })
32}