0

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
        });

...```
4

1 に答える 1

0

自己解決しました。問題は、レポーターが「ヘッド モード」で結果を投稿しないことでした。

于 2019-07-19T12:34:52.770 に答える