salty / cypress-testrail-reporter不会将结果发布到TR

时间:2019-07-13 09:45:42

标签: cypress reporters testrail

我的测试写在赛普拉斯上。现在需要将结果报告给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
        });

...```

1 个答案:

答案 0 :(得分:0)

下定决心。 问题是记者没有以“抬头模式”发布结果。