Mochawesome 记者在使用 Mocha 的 this.retries() api 时输出不正确的 json 结果
Mochawesome reporter outputs incorrect json results while using Mocha's this.retries() api
虽然我看到 open issue 关于这个,
想检查我们是否有解决方法,有什么建议吗? :
仅在使用 this.retries()
时,我看到 json 结果显示 null
元素 state
和 speed
元素 pass
, fail
因为 false
和 err
是空的,因此 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
}
如果有人在使用 retries() 时遇到同样的问题,我切换到一个名为 mocha-allure-reporter 的报告框架。我发现这是一个很棒的报告框架。
虽然我看到 open issue 关于这个, 想检查我们是否有解决方法,有什么建议吗? :
仅在使用 this.retries()
时,我看到 json 结果显示 null
元素 state
和 speed
元素 pass
, fail
因为 false
和 err
是空的,因此 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
}
如果有人在使用 retries() 时遇到同样的问题,我切换到一个名为 mocha-allure-reporter 的报告框架。我发现这是一个很棒的报告框架。