我找到了一个很好的清洁方式,使用Jasmine记者以有序的方式保存测试结果.
原文链接:https://www.f2er.com/angularjs/143484.html如何安装和配置Jasmine记者:
安装Jasmine记者:
npm install -g jasmine-reporters@H_301_10@将以下内容添加到protractor-config.js文件中:
onPrepare: function() { require('jasmine-reporters'); jasmine.getEnv().addReporter( new jasmineReporters.JUnitXmlReporter('outputxmldir',true,true)); }@H_301_10@