我在赛普拉斯上写了我的测试。现在需要将结果报告给TestRail。Cypress.json 指定了正确的配置,我看到记者在 TR 中正确创建了新的运行,但测试完成后没有发布结果。
我是否需要指定一些版本,或者什么可能会失败?
问题出在 testrail.js 中:
...
axios({
method: 'get',
url: this.base + "/get_runs/" + this.projectId,
headers: { 'Content-Type': 'application/json' },
auth: {
username: this.options.username,
password: this.options.password,
}// no request maid
}).then(function (response) {
_this.runId = response.data[0].id;
responce = response.data[0].id;
publishToAPI(); // no request maid
});
...```