Cypress でテストを作成しました。そして、結果を TestRail に報告する必要があります。Cypress.json には正しい構成が指定されており、レポーターが TR で新しい Run を正しく作成していることがわかりますが、テスト完了後に結果が投稿されません。
いくつかのバージョンを指定する必要がありますか? または何が失敗している可能性がありますか?
問題は 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
});
...```