summaryrefslogtreecommitdiff
path: root/karma.conf.js
blob: 1ea17475a92c214c5a1c6e1f1f6c11ba877cf4e0 (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Karma configuration

// The Safari launcher is broken, so construct our own
function SafariBrowser(id, baseBrowserDecorator, args) {
  baseBrowserDecorator(this);

  this._start = function(url) {
    this._execCommand('/usr/bin/open', ['-W', '-n', '-a', 'Safari', url]);
  }
}

SafariBrowser.prototype = {
  name: 'Safari'
}

module.exports = (config) => {
  let browsers = [];

  if (process.env.TEST_BROWSER_NAME) {
    browsers = process.env.TEST_BROWSER_NAME.split(',');
  }

  const my_conf = {

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '',

    // frameworks to use
    // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    frameworks: ['mocha', 'sinon-chai'],

    // list of files / patterns to load in the browser (loaded in order)
    files: [
      { pattern: 'app/localization.js', included: false, type: 'module' },
      { pattern: 'app/webutil.js', included: false, type: 'module' },
      { pattern: 'core/**/*.js', included: false, type: 'module' },
      { pattern: 'vendor/pako/**/*.js', included: false, type: 'module' },
      { pattern: 'tests/test.*.js', type: 'module' },
      { pattern: 'tests/fake.*.js', included: false, type: 'module' },
      { pattern: 'tests/assertions.js', type: 'module' },
    ],

    client: {
      mocha: {
        // replace Karma debug page with mocha display
        'reporter': 'html',
        'ui': 'bdd'
      }
    },

    // list of files to exclude
    exclude: [
    ],

    plugins: [
      'karma-*',
      '@chiragrupani/karma-chromium-edge-launcher',
      { 'launcher:Safari': [ 'type', SafariBrowser ] },
    ],

    // start these browsers
    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    browsers: browsers,

    // test results reporter to use
    // possible values: 'dots', 'progress'
    // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    reporters: ['mocha'],


    // level of logging
    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    logLevel: config.LOG_INFO,


    // enable / disable watching file and executing tests whenever any file changes
    autoWatch: false,

    // Continuous Integration mode
    // if true, Karma captures browsers, runs the tests and exits
    singleRun: true,
  };

  config.set(my_conf);
};