正如frisby官方文档(http://frisbyjs.com/)中所提到的,我正在使用--junitreport之类的东西

jasmine-node ./demo/validation_spec.js/ --junitreport --output
   C:\Users\Administrator\Documents\script/Reports

这是生成15 xml文件 . 因为我用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这样的概述页面

其中包含有多少测试通过,失败等信息 . 是否有可能得到它 .