|
@@ -26,7 +26,8 @@ module.exports = function(config) {
|
26
|
26
|
|
27
|
27
|
|
28
|
28
|
// preprocess matching files before serving them to the browser
|
29
|
|
- // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
|
|
29
|
+ // available preprocessors:
|
|
30
|
+ // https://npmjs.org/browse/keyword/karma-preprocessor
|
30
|
31
|
preprocessors: {
|
31
|
32
|
'./JitsiMeetJS.js': ['webpack'],
|
32
|
33
|
'./**/*.spec.js': ['webpack']
|
|
@@ -48,16 +49,19 @@ module.exports = function(config) {
|
48
|
49
|
|
49
|
50
|
|
50
|
51
|
// level of logging
|
51
|
|
- // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
52
|
+ // possible values: config.LOG_DISABLE || config.LOG_ERROR ||
|
|
53
|
+ // config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
52
|
54
|
logLevel: config.LOG_INFO,
|
53
|
55
|
|
54
|
56
|
|
55
|
|
- // enable / disable watching file and executing tests whenever any file changes
|
|
57
|
+ // enable / disable watching file and executing tests whenever
|
|
58
|
+ // any file changes
|
56
|
59
|
autoWatch: false,
|
57
|
60
|
|
58
|
61
|
|
59
|
62
|
// start these browsers
|
60
|
|
- // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
|
|
63
|
+ // available browser launchers:
|
|
64
|
+ // https://npmjs.org/browse/keyword/karma-launcher
|
61
|
65
|
browsers: ['Chrome'],
|
62
|
66
|
|
63
|
67
|
|