You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
14:25:45.472 detox[8263] i The app has not responded to the network requests below:
(id = 1) currentStatus: {}
(id = 2) invoke: {"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxAssertion"},"method":"assertMatcher","args":[{"type":"Invocation","value":{"target":{"type":"Class","value":"androidx.test.espresso.Espresso"},"method":"onView","args":[{"type":"Invocation","value":{"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxMatcher"},"method":"matcherForText","args":["Or Enter Manually",{"type":"boolean","value":false}]}}]}},{"type":"Invocation","value":{"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxMatcher"},"method":"matcherForSufficientlyVisible","args":[{"type":"Integer","value":75}]}}]}
Unresponded network requests might result in timeout errors in Detox tests.
I was using a utility class that was outside of my test. This may not help everyone but adding an await in front of the function call helped me: const utilCls = new Util(); await util.function();
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I was experiencing this error below:
I was using a utility class that was outside of my test. This may not help everyone but adding an await in front of the function call helped me:
const utilCls = new Util(); await util.function();
Beta Was this translation helpful? Give feedback.
All reactions