running e2e tests #269
Answered
by
rbshh
iamhaaamed
asked this question in
Q&A
running e2e tests
#269
-
Hello, |
Beta Was this translation helpful? Give feedback.
Answered by
rbshh
Mar 5, 2024
Replies: 1 comment 1 reply
-
Did you mean that the Expo Dev Menu shows up on every launch in dev mode? If yes, I think with Expo 50, the app will start with the last dev URL selected, which means that the issue is fixed. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you're using Metro as your bundler, add the following code to your metro.config.js file to set the default server configuration:
defaultConfig: { server: { host: 'localhost', port: 8081, }, }
Another possible solution in case of android is to utilise the built-in 'adb' command-line tool:
adb shell am start -a android.intent.action.VIEW -d 'http://localhost:8081'