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
The symptom you see is that the "testee" does not connect. The underlying reason is that Detox dynamic framework tries to load and fails because one of the dependencies throws an exception in runtime.
This project depends on several "hardcore" projects that are tightly coupled to internals and therefore might break on major version changes of Xcode and the OS:
EarlGrey - the version we depend upon does not load successfully after being compiled on Xcode 8
FBSimCtl - the version we depend upon does not work well on MacOS Sierra
RocketSocket - the version we depend upon also has a few problems under this setting
The solution is obvious, update these dependencies to latest version which solve all the issues. While we're at it, it's a good time to make the dependencies dynamic so they will update automatically by themselves from now on:
EarlGrey - rely on it as a git submodule that we can update easily by tag and change releases
FBSimCtl - download it pre-compiled from brew, this promises we get a correct ver per OS
RocketSocket - also change to rely on it as a git submodule
The text was updated successfully, but these errors were encountered:
The symptom you see is that the "testee" does not connect. The underlying reason is that Detox dynamic framework tries to load and fails because one of the dependencies throws an exception in runtime.
This project depends on several "hardcore" projects that are tightly coupled to internals and therefore might break on major version changes of Xcode and the OS:
The solution is obvious, update these dependencies to latest version which solve all the issues. While we're at it, it's a good time to make the dependencies dynamic so they will update automatically by themselves from now on:
The text was updated successfully, but these errors were encountered: