This repository was archived by the owner on Jul 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
50 lines (47 loc) · 1.69 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
module.exports = function (config) {
var root = './target/karma' // same as :output-dir
var junitOutputDir = "target/karma/junit"
var browsers = ['ChromeHeadless']
config.set({
frameworks: ['cljs-test'],
browsers: browsers,
basePath: root,
files: [
'test.js',
{
/* This makes bootstrap cache analysis files required by the self-hosted
* compiler available via the Karma web server (`served: true`) BUT does
* NOT inject those files into the web-page (`included: false`) as the
* self-hosted Clojure initialization will load these files. */
pattern: 'bootstrap/**/*.*',
watched: true,
included: false,
served: true,
nocache: true
}
],
proxies: {
"/bootstrap/": "http://localhost:9876/base/bootstrap/"
},
plugins: [
'karma-cljs-test',
'karma-chrome-launcher',
'karma-junit-reporter'
],
colors: true,
logLevel: config.LOG_INFO,
client: {
args: ['shadow.test.karma.init'],
singleRun: true,
useIframe: false
//runInParent: true
},
concurrency: 1,
// the default configuration
junitReporter: {
outputDir: junitOutputDir, // results will be saved as outputDir/browserName.xml
outputFile: undefined, // if included, results will be saved as outputDir/browserName/outputFile
suite: '' // suite will become the package name attribute in xml testsuite element
}
})
}