根据将junit报告程序添加到wdio.conf.js,我很确定。

每当我尝试实现任何报告程序时,我都会得到以下输出,并且我的测试失败了:

ERROR @wdio/local-runner: 2019-06-04T10:01:13.337Z
ERROR @wdio/local-runner: 2019-06-04T10:01:13.336Z
ERROR @wdio/local-runner: Failed launching test session:
TypeError: ReporterClass is not a constructor at BaseReporter.initReporter (/home/jawar/Project_webdriverio/node_modules/@wdio/runner/build/reporter.js:202:14) at Array.map (<anonymous>)


这就是我将报告程序添加到wdio.conf.js(https://webdriver.io/docs/jenkins.html)的方式

  reporters: [
        'dot',
        ['junit', {
            outputDir: './'
        }]
    ],


我是一个新人,非常感谢您的帮助。

最佳答案

必须先按照以下链接安装Junit报告程序包,然后才能在wdio.conf.js中对其进行配置:https://webdriver.io/docs/junit-reporter.html#installation

09-25 16:17