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
When using Espresso, the tests fail with " Request failed with status 500 due to session not created: A new session could not be created. Details: Espresso server process has been unexpectedly terminated". The ADB stack trace shows the app fails to launch because of "java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libhermes.so" Below is my configuration...
This is literally a stock React Native app just initialized with the CLI with no other modifications. It is frustrating that setting this up in such a clean state is so difficult. The same tests run 100% fine using UIAutomator2. I assume I am doing something super silly and wrong, but I haven't been able to figure it out yet.
Any help would be much appreciated.
The text was updated successfully, but these errors were encountered:
Espresso and UIA2 have different architectures at Android OS level. Espresso generally depends on the app under test, https://developer.android.com/training/testing/espresso , so as you already use espressoBuildConfig, probably something react native specific dependencies are needed to the espresso server.
When using Espresso, the tests fail with " Request failed with status 500 due to session not created: A new session could not be created. Details: Espresso server process has been unexpectedly terminated". The ADB stack trace shows the app fails to launch because of "java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libhermes.so" Below is my configuration...
This is literally a stock React Native app just initialized with the CLI with no other modifications. It is frustrating that setting this up in such a clean state is so difficult. The same tests run 100% fine using UIAutomator2. I assume I am doing something super silly and wrong, but I haven't been able to figure it out yet.
Any help would be much appreciated.
The text was updated successfully, but these errors were encountered: