我并行运行量角器规格并生成xml报告。问题是报告被覆盖而不是整合所有规格结果。
protractor.config.js如下:
capabilities: {
'browserName': 'chrome',
shardTestFiles: true,
maxInstances: 5
},
onPrepare: function () {
var jasmineReporters = require('jasmine-reporters');
jasmine.getEnv().addReporter(new jasmineReporters.JUnitXmlReporter({
consolidateAll: true,
savePath: 'TestReports',
filePrefix: 'xmloutput',
consolidate: true
}));
},
任何帮助将不胜感激!!
答案 0 :(得分:1)
我还会删除分片以确保分片测试不会导致问题。