答案 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'
},
]
}
});