JUnit 格式的测试输出
JUnit formatted test output
Jenkins 没有注意到我的测试用例是 运行 在 Polymer 中,我不太确定如何生成正确的 JUnit 文件。使用 web-component-tester 如何生成 JUnit 格式的测试输出?
This package 终于帮我搞定了。
进程
$ npm install wct-xunit-reporter
$ wct --plugin xunit-reporter
或将配置添加到 wct.conf.js
module.exports = {
plugins: {
local: {
browsers: ['chrome']
},
sauce: false,
'xunit-reporter': {
'output': 'testfile.xml'
}
}
};
运行 web-component-tester
$ wct
Jenkins 没有注意到我的测试用例是 运行 在 Polymer 中,我不太确定如何生成正确的 JUnit 文件。使用 web-component-tester 如何生成 JUnit 格式的测试输出?
This package 终于帮我搞定了。
进程
$ npm install wct-xunit-reporter
$ wct --plugin xunit-reporter
或将配置添加到 wct.conf.js
module.exports = {
plugins: {
local: {
browsers: ['chrome']
},
sauce: false,
'xunit-reporter': {
'output': 'testfile.xml'
}
}
};
运行 web-component-tester
$ wct