salty-/cypress-testrail-reporter 没有将结果发布到 TR
salty-/cypress-testrail-reporter not posting results to TR
我的测试是在 Cypress 上编写的。而现在需要将结果报告给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
});
...```
自己解决了。
问题是报告者没有 post 结果 'headed mode.'
我的测试是在 Cypress 上编写的。而现在需要将结果报告给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
});
...```
自己解决了。 问题是报告者没有 post 结果 'headed mode.'