-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e2e get stuck #86
Comments
same thing happens to me with a super simple assertion const timeout = 20000;
describe('Example', () => {
before(done => {
simulator.relaunchApp(
{ url: 'exp://6b-dt8.notbrent.growler-prowler.exp.direct:80' },
done
);
});
it('should have welcome screen', () => {
waitFor(element(by.label('Welcome to Exponent!')))
.toBeVisible()
.withTimeout(timeout);
element(by.label('Got it')).tap();
expect(element(by.label('Continue as a guest')).toBeVisible());
});
}); |
@ofiratt, the issue is now fixed on your example, and will be released with detox 5.0.0 in the coming days. @brentvatne can you please supply a demo project with this crash, I want to test the fix on your use case as well |
summary of the issue: |
@rotemmiz Can we close this? |
yup, this is fixed now -- or at least it was for me |
please check "should show first screen" at ofiratt/react-native-movies-list@4ba63bd
The text was updated successfully, but these errors were encountered: