gpt4 book ai didi

testing - testcafe 中的 HTML-testrail 报告不正确

转载 作者:行者123 更新时间:2023-11-28 20:19:29 25 4
gpt4 key购买 nike

我下载了 testcafe-reporter-html-testrail 并在我的 testcafe 项目中使用它。如果我为报告提供自定义名称,则无法正确保存,即报告不完整,几乎空白,只有几行......但是,如果我没有提供自定义名称,则报告将以以下格式保存Report_TIMESTAMP.html(例如:Report_16_5_2018_14_46_46.html)我在这里做错了什么?

const createTestCafe = require('testcafe');
let testcafe = null;

createTestCafe()
.then(tc => {
testcafe = tc;
const runner = testcafe.createRunner();

let id;
const deadlinePromise = new Promise((resolve,reject) => {
id=setTimeout(() => {
clearTimeout(id);
reject('testcase couldnt meet the actual preferred time');
},215000)
});

const runPromise=runner
.src(test1.ts)
.browsers('chrome:headless')
// what am I doing wrong in the below step? the report is not saving properly
.reporter('html-testrail', 'Reports/report1.html')
.run({skipJsErrors:true})


race =Promise.race([runPromise,deadlinePromise])
race.then((res) => console.log(res))

})

.catch(failedCount => {
console.log('Tests1 failed: ' + failedCount);
testcafe.close();
})

最佳答案

html-testrail 报告器忽略了 output 选项,而是使用 HTML_REPORT_PATHHTML_REPORT_NAME 环境变量。您可以使用 process.env 修改环境变量并将报告保存在所需位置:

process.env.HTML_REPORT_PATH = path.resolve('Reports');
process.env.HTML_REPORT_NAME = 'report1.html';

关于testing - testcafe 中的 HTML-testrail 报告不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58383200/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com