forked from sillsdev/web-languageforge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
50 lines (40 loc) · 1.2 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
40
41
42
43
44
45
46
47
48
49
50
'use strict';
var getWebpackConfig = require('./webpack.config.js');
// Karma configuration
module.exports = function (config) {
if (config.applicationName == null) {
config.applicationName = 'languageforge';
}
var webpackConfig = getWebpackConfig({ applicationName: config.applicationName, isTest: true });
var main = webpackConfig.entry.main;
delete webpackConfig.entry;
config.set({
basePath: '.',
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [main],
// list of files to exclude
exclude: [],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
[main]: ['webpack', 'sourcemap']
},
webpack: webpackConfig,
// test results reporter to use
// possible values: dots || progress || growl
reporters: ['progress'],
// web server port
port: 8080,
// cli runner port
runnerPort: 9100,
colors: true,
logLevel: config.LOG_WARN,
browsers: ['ChromiumHeadless'],
captureTimeout: 8000,
singleRun: true,
mime: {
'text/x-typescript': ['ts','tsx']
}
});
};