自定义mocha-bamboo-reporter以包括测试文件名

时间:2019-10-08 18:40:22

标签: protractor mocha bamboo

我试图在量角器测试中自定义mocha-bamboo-reporter https://www.npmjs.com/package/mocha-bamboo-reporter,以包含一个名为file的字段,该字段在Bamboo报告中包含测试文件名。

mocha-bamboo-reporter

  var o = {
      title: test.title
    , fullTitle: test.fullTitle()
    , duration: test.duration
    , file: test.file    // this is the new change  
  };

当我在本地运行测试时,生成的mocha.json包含我想要的file信息。

mocha.json

  {
      "title": "should show login form",
      "fullTitle": " Home Page should show login form",
      "duration": 300,
      "file": "xxx/tests/directory-name/test.js"
    }, 

在Bamboo中,我有一个Mocha Test Parser的{​​{1}}构建任务,但是在Bamboo报告中,从未包含mocha.json,只有filetitle,{ {1}}等。我需要怎么做才能显示此信息?我需要在fullTitle中添加一些内容吗?

竹编任务

enter image description here

0 个答案:

没有答案