Mochawesome 记者在使用 Mocha 的 this.retries() api 时输出不正确的 json 结果

Posted

技术标签:

【中文标题】Mochawesome 记者在使用 Mocha 的 this.retries() api 时输出不正确的 json 结果【英文标题】:Mochawesome reporter outputs incorrect json results while using Mocha's this.retries() api 【发布时间】:2020-05-19 14:04:04 【问题描述】:

虽然我看到了一个关于这个的open issue, 想检查我们是否有解决方法,有什么建议吗? :

仅在使用 this.retries() 时,我看到 json 结果显示 null 元素 statespeed 元素 passfailfalseerr 为空,也结果 html 报告看起来不正确。这是我的测试

describe(`Page Load checks `, async function ()  

it('Page Check', async function () 
        this.retries(1); 
        presentationsPage = await navMenu.loadPresentationsPage();
        const result = await presentationsPage.isPresentationsPageLoadComplete();
        expect(result).to.equal(true, 'Expected : Presentation Page');
    ) ;
  );

和json结果


              "title": "Page Check",
              "fullTitle": "Page Loads  Check",
              "timedOut": false,
              "duration": 32014,
              "state": null,
              "speed": null,
              "pass": false,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "__awaiter(this, void 0, void 0, function...",
              "err": ,
              "uuid": "6971b4af-b327bda4ffa8",
              "parentUUID": "3345841e-6a5f-19fee98",
              "isHook": false,
              "skipped": true
            

【问题讨论】:

【参考方案1】:

如果有人在使用 retries() 时遇到同样的问题,我会切换到一个名为 mocha-allure-reporter 的报告框架。我发现这是一个很棒的报告框架。

【讨论】:

它工作正常吗?这么多未解决的问题(((例如github.com/allure-framework/allure-mocha/issues/55

以上是关于Mochawesome 记者在使用 Mocha 的 this.retries() api 时输出不正确的 json 结果的主要内容,如果未能解决你的问题,请参考以下文章

Mochawesome 报告未在浏览器中打开?

从 mochawesome 报告中删除待定测试

mochawesome 的问题:TypeError:无法设置未定义的属性“testsRegistered”

出现错误 mochawesome-merge 错误:未知选项:--reportDir

Cypress web自动化26-mochawesome-merge合并json报告

Cypress web自动化26-mochawesome-merge合并json报告