如 frisby 官方文档 ( http://frisbyjs.com/ ) 中所述,我正在使用 --junitreport 类似于以下内容
jasmine-node ./demo/validation_spec.js/ --junitreport --output
C:\Users\Administrator\Documents\script/Reports
生成 15 个 xml 文件。当我使用 for 循环调用 15 次发布时。文件包含如下数据
<?xml version="1.0" encoding="UTF-8" ?>
<testsuites>
<testsuite name="Frisby Test:blank action " errors="0" tests="1" failures="0" time="0.284" timestamp="2017-03-21T13:55:15">
<testcase classname="Frisby Test: blank action " name="
[ POST https://localhost:8443/api/v2/settings/pointwise ]" time="0.282"></testcase>
</testsuite>
</testsuites>
所以我的困难是我需要阅读每个文件以检查测试是否通过。我想要某种概述页面,例如http://maven.apache.org/surefire/maven-surefire-report-plugin/surefire-report.html
其中包含有多少测试通过、失败等信息。是否有可能得到它。