forked from PlanQK/workflow-modeler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
67 lines (56 loc) · 2.38 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Karma configuration
const webpackConfig = require("./webpack.config.js");
module.exports = function (config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: "",
// frameworks to use
// available frameworks: https://www.npmjs.com/search?q=keywords:karma-adapter
frameworks: ["mocha", "webpack"],
// list of files / patterns to load in the browser
files: [
"test/tests/editor/configurations.spec.js",
"test/tests/editor/editor.spec.js",
"test/tests/editor/plugin.spec.js",
"test/tests/planqk/planqk-transformation.spec.js",
"test/tests/editor/utils/modelling-util.spec.js",
"test/tests/qhana/qhana-plugin-config.spec.js",
"test/tests/qhana/qhana-service-configs.spec.js",
"test/tests/quantme/quantme-transformation.spec.js",
"test/tests/quantme/quantme-config.spec.js",
"test/tests/opentosca/opentosca-config.spec.js",
"test/tests/opentosca/deployment-utils.spec.js",
"test/tests/opentosca/deployment-model-renderer.spec.js",
"test/tests/dataflow/data-flow-transformation.spec.js",
"test/tests/dataflow/data-flow-plugin-config.spec.js",
"test/tests/dataflow/data-flow-configurations-endpoint.spec.js",
"test/tests/dataflow/data-flow-palette.spec.js",
"test/tests/dataflow/data-flow-replace-menu.spec.js",
"test/tests/pattern/pattern-config.spec.js",
"test/tests/pattern/pattern-qrms.spec.js",
"test/tests/pattern/pattern-transformation.spec.js",
],
// list of files / patterns to exclude
exclude: [],
// preprocess matching files before serving them to the browser
// available preprocessors: https://www.npmjs.com/search?q=keywords:karma-preprocessor
preprocessors: {
"test/**/*.spec.js": ["webpack"],
},
webpack: webpackConfig,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://www.npmjs.com/search?q=keywords:karma-launcher
browsers: ["ChromeHeadless"],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true,
// Concurrency level
// how many browser instances should be started simultaneously
concurrency: 1,
mochaReporter: {
output: "minimal",
},
});
};