5

Running detox 17.4.3 with Jest-Circus as the test runner I am running into the following error using an iOS simulator.

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.

Here are the versions of Jest in my package.json.

 "jest": "^26.4.1",

 "jest-circus": "^26.4.1",  

Any ideas how I can debug this further or a fix?

skyboyer
  • 22,209
  • 7
  • 57
  • 64

1 Answers1

0

In my case: As of 18.0.0 (December 2020) Detox requires you to call device.launchApp() or all your tests will time out because the app didn't launch. See the migration guide.

Unfortunately this isn't documented in the release notes or suggested in error messages - opened a GitHub issue to suggest clearer documentation.

Freewalker
  • 6,329
  • 4
  • 51
  • 70