当黑猩猩进行测试时,摩卡记者似乎没有被考虑在内

时间:2017-01-27 14:16:48

标签: npm mocha chimp.js

我有一个非常简单的项目,其中包含 package.json

{
  "scripts": {
    "acceptance": "chimp --mocha --mochaReporter=mocha-junit-reporter  --chai --browser=chrome --path=src/spec/acceptance/**"
   },
  "devDependencies": {
  "chai": "^3.5.0",
  "chimp": "^0.47.1",
  "mocha": "^3.2.0",
  "mocha-junit-reporter": "^1.13.0",
  "uglify-js": "^2.7.5",
  "webdriverio": "^4.6.2"
},
  "dependencies": {}
}

要执行测试,我正在运行以下命令:

npm run-script acceptance

这使得黑猩猩用mocha执行测试(那些是webdriverio测试,因此我使用黑猩猩的原因) 测试按预期运行,但是,没有生成任何 test-results.xml ,测试结果以默认的“spec”格式显示。

正如documentation中所建议的,我尝试了不同的替代方案,例如在项目的根目录创建 chimp.js 文件,其中包含以下内容:

{
  mochaCommandLineOptions: ['--reporter mocha-junit-reporter'];
  mochaConfig: { reporter: 'mocha-junit-reporter' };
  mochaReporter: "mocha-junit-reporter";
}

但这些选项似乎都没有被考虑在内。

那么,任何人都可以告诉我,如果我做错了什么?

ps:我有一个单独的单元测试脚本,工作正常,并考虑自定义报告,但对于那些,我只是使用没有黑猩猩的摩卡。

1 个答案:

答案 0 :(得分:1)

在你的chimp.js配置文件中试试这个:

  mocha: true,
  chai: true,
  path: 'src/spec/acceptance/**',
  mochaConfig: {
    reporter: 'mocha-junit-reporter',
    reporterOptions: {
      mochaFile: './test-results.xml'
    }
  }