0

报告中有这些数据。但无法形象化

在此处输入图像描述

这些是生成的报告和 JSON 数据。

在此处输入图像描述

4

1 回答 1

1

您可以使用 HTML 报告而不是 JSON 输出,在您的 codecept.conf.js 中添加以下配置:

将 Mochawesome 助手添加到助手中:

  helpers: {
     Mochawesome: {
        "uniqueScreenshotNames": "true",
        "disableScreenshots" : "false"
     }
}

并将 {"reportDir": "output"} 添加到 mocha 配置中,如下所示:

  mocha: {
     "reporterOptions": {
         "codeceptjs-cli-reporter": {
             "stdout": "-",
             "options": {
                "verbose": true,
                "steps": true,
               }
          },
         "mocha-junit-reporter": {
              "stdout": "./output/console.log",
              "options": {
                 "mochaFile": "./output/result.xml"
              }
         },
        "reportDir": "output",
        "inlineAssets": true,
        "reporter": "mochawesome"
      }
    }
于 2020-04-29T15:40:38.830 回答