Add junit test reports
parent
4d00fca6bd
commit
d948281354
|
@ -106,6 +106,7 @@
|
||||||
"karma": "^4.0.1",
|
"karma": "^4.0.1",
|
||||||
"karma-chai": "^0.1.0",
|
"karma-chai": "^0.1.0",
|
||||||
"karma-chrome-launcher": "^3.0.0",
|
"karma-chrome-launcher": "^3.0.0",
|
||||||
|
"karma-junit-reporter": "^2.0.1",
|
||||||
"karma-mocha": "^1.3.0",
|
"karma-mocha": "^1.3.0",
|
||||||
"karma-rollup-preprocessor": "^7.0.5",
|
"karma-rollup-preprocessor": "^7.0.5",
|
||||||
"karma-sinon": "^1.0.5",
|
"karma-sinon": "^1.0.5",
|
||||||
|
|
|
@ -6,7 +6,7 @@ const NODE_ENV = process.env.NODE_ENV || 'test';
|
||||||
|
|
||||||
module.exports = function(config) {
|
module.exports = function(config) {
|
||||||
config.set({
|
config.set({
|
||||||
reporters: ['tfs', 'spec'],
|
reporters: ['tfs', 'spec','junit'],
|
||||||
basePath: '../',
|
basePath: '../',
|
||||||
frameworks: ['mocha', 'chai', 'sinon-chai'],
|
frameworks: ['mocha', 'chai', 'sinon-chai'],
|
||||||
files: [
|
files: [
|
||||||
|
@ -34,6 +34,9 @@ module.exports = function(config) {
|
||||||
outputDir: 'testresults',
|
outputDir: 'testresults',
|
||||||
outputFile: 'test_results.xml',
|
outputFile: 'test_results.xml',
|
||||||
},
|
},
|
||||||
|
junitReporter: {
|
||||||
|
outputDir: 'test-results-junit'
|
||||||
|
},
|
||||||
singleRun: true,
|
singleRun: true,
|
||||||
preprocessors: {
|
preprocessors: {
|
||||||
'./src/js/localization.js': ['rollup'],
|
'./src/js/localization.js': ['rollup'],
|
||||||
|
|
13
yarn.lock
13
yarn.lock
|
@ -5453,6 +5453,14 @@ karma-chrome-launcher@^3.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
which "^1.2.1"
|
which "^1.2.1"
|
||||||
|
|
||||||
|
karma-junit-reporter@^2.0.1:
|
||||||
|
version "2.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/karma-junit-reporter/-/karma-junit-reporter-2.0.1.tgz#d34eef7f0b2fd064e0896954e8851a90cf14c8f3"
|
||||||
|
integrity sha512-VtcGfE0JE4OE1wn0LK8xxDKaTP7slN8DO3I+4xg6gAi1IoAHAXOJ1V9G/y45Xg6sxdxPOR3THCFtDlAfBo9Afw==
|
||||||
|
dependencies:
|
||||||
|
path-is-absolute "^1.0.0"
|
||||||
|
xmlbuilder "12.0.0"
|
||||||
|
|
||||||
karma-mocha@^1.3.0:
|
karma-mocha@^1.3.0:
|
||||||
version "1.3.0"
|
version "1.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/karma-mocha/-/karma-mocha-1.3.0.tgz#eeaac7ffc0e201eb63c467440d2b69c7cf3778bf"
|
resolved "https://registry.yarnpkg.com/karma-mocha/-/karma-mocha-1.3.0.tgz#eeaac7ffc0e201eb63c467440d2b69c7cf3778bf"
|
||||||
|
@ -10131,6 +10139,11 @@ xdg-basedir@^3.0.0:
|
||||||
resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
|
resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
|
||||||
integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=
|
integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=
|
||||||
|
|
||||||
|
xmlbuilder@12.0.0:
|
||||||
|
version "12.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-12.0.0.tgz#e2ed675e06834a089ddfb84db96e2c2b03f78c1a"
|
||||||
|
integrity sha512-lMo8DJ8u6JRWp0/Y4XLa/atVDr75H9litKlb2E5j3V3MesoL50EBgZDWoLT3F/LztVnG67GjPXLZpqcky/UMnQ==
|
||||||
|
|
||||||
xmlbuilder@^9.0.0, xmlbuilder@^9.0.7:
|
xmlbuilder@^9.0.0, xmlbuilder@^9.0.7:
|
||||||
version "9.0.7"
|
version "9.0.7"
|
||||||
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"
|
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"
|
||||||
|
|
Loading…
Reference in New Issue