editor: fixing, refactoring, improving styling in choice exercises
[fnpeditor.git] / karma.conf.js
1 basePath = '';
2
3 files = [
4   MOCHA,
5   MOCHA_ADAPTER,
6   REQUIRE,
7   REQUIRE_ADAPTER,
8   
9   {pattern: 'libs/*.js', included: false},
10   {pattern: 'src/**/*.js', included: false},
11   {pattern: 'src/**/*.html', included: false},
12   {pattern: 'src/**/*.xml', included: false},
13   'tests/main.js',
14 ];
15
16 reporters = ['progress'];
17
18 port = 9876;
19 runnerPort = 9100;
20 captureTimeout = 60000;
21
22 autoWatch = true;
23 singleRun = false;
24
25 colors = true;
26 logLevel = LOG_INFO;
27
28
29
30
31
32
33
34
35