Jestjs 解毒:应用程序未响应以下网络请求

Jestjs 解毒:应用程序未响应以下网络请求,jestjs,detox,jest-circus,Jestjs,Detox,Jest Circus,使用Jest Circus作为测试运行程序运行detox 17.4.3时,我在使用iOS模拟器时遇到以下错误 detox[18766] WARN: [Client.js/PENDING_REQUESTS] App has not responded to the network requests below: (id = -1000) isReady: {} Unresponded network requests might result in timeout errors in De

使用Jest Circus作为测试运行程序运行detox 17.4.3时,我在使用iOS模拟器时遇到以下错误

detox[18766] WARN:  [Client.js/PENDING_REQUESTS] App has not responded to the network requests below:
  (id = -1000) isReady: {}

Unresponded network requests might result in timeout errors in Detox tests.
以下是mypackage.json中Jest的版本

 "jest": "^26.4.1",

 "jest-circus": "^26.4.1",  
你知道如何进一步调试或修复吗?

在我的情况下:从18.0.0(2020年12月)起,解毒要求你调用
设备。launchApp()
,否则你的所有测试都将超时,因为应用程序没有启动。看


不幸的是,这没有记录在错误消息中或在错误消息中建议-打开一个以建议更清晰的文档。

这里运气好吗?有相同的problem@RomainBraun不,我从来没有经历过。