當我使用 wdio 和 mocha 作為測試框架對多個瀏覽器運行測試時,我得到以下錯誤,如果它只針對一個瀏覽器運行,相同的斷言工作正常describe ('Landing Page test suite',()=> { before(()=>{ browser.url('/') }) it ('1. Page should be loaded proeprly',()=>{ p.header.waitForDisplayed() expect(p.header).toBeVisible() })})Unexpected return from a matcher function.Matcher functions should return an object in the following format: {message?: string | function, pass: boolean}'[{"message": [Function message], "pass": false}, {"message": [Function message], "pass": false}]' was returned這是代碼示例 https://github.com/Amrkamel1/wdExample.git運行: npm 我 npm 運行測試
使用 jest 斷言時,匹配器函數(shù)應返回以下格式的對象
收到一只叮咚
2022-10-21 14:34:03