Jenkins doesn't notice my test cases being ran in Polymer and I am not so sure how to generate the correct JUnit file. With the web-component-tester how do I generate JUnit formatted test output?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
This package ended up doing the trick for me.
Process
$ npm install wct-xunit-reporter
$ wct --plugin xunit-reporter
or add config to wct.conf.js
module.exports = {
plugins: {
local: {
browsers: ['chrome']
},
sauce: false,
'xunit-reporter': {
'output': 'testfile.xml'
}
}
};
Run web-component-tester
$ wct