如何在multiple-cucumber-html-reporter上为功能设置自定义元数据?

时间:2019-01-27 07:41:52

标签: cucumber cucumberjs

我在multi-cucumber-html-reporter中创建自定义元数据时遇到问题。

Here是自定义元数据的示例。

如何为黄瓜功能设置自定义元数据?

谢谢你。

1 个答案:

答案 0 :(得分:0)

也许有点晚,但是最近我遇到了同样的问题。

您必须在传递给report.generate()的参数中解析该选项 因此,在我看来,它类似于:

report.generate({
    customMetadata: true,
    displayDuration: true,
    durationInMS: true,
    jsonDir: '/jsonpath',
    reportPath: '/reportpath',
    metadata: [{
      name: 'Column title',
      value: 'Column value'
    }],
    customData: {
      title: 'Run info',
      data: [{
          label: 'Feature',
          value: 'feature_name'
        },
        {
          label: 'Execution Start Time',
          value: 'start_time'
        },
        {
          label: 'Execution End Time',
          value: 'end_time'
        },
      ]
    }
});

更多信息,请访问: Multiple Cucumber HTML Reporter on GITHUB