UNPKG

424 BJavaScriptView Raw
1// Karma configuration
2
3module.exports = config => {
4 config.set({
5 files: [
6 "es5/test.js"
7 ],
8
9 frameworks: ["mocha"],
10 reporters: ["mocha"],
11 browsers: ["Chrome"],
12
13 port: 9876,
14 colors: true,
15
16 // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
17 logLevel: config.LOG_INFO,
18
19 autoWatch: true,
20 singleRun: true,
21 concurrency: Infinity
22 });
23};
\No newline at end of file