Skip to content

Commit

Permalink
No need to invoke 'input keyevent 82' on test-e2e-local (#48707)
Browse files Browse the repository at this point in the history
Summary:
The testing script is making unnecessary call to `input keyevent 82` which causes the Android device to
open the menu.

## Changelog:

[Internal] [Changed] -

Pull Request resolved: #48707

Test Plan: Tested local with local device

Reviewed By: cipolleschi

Differential Revision: D68215641

Pulled By: cortinico

fbshipit-source-id: 3e2653d8aa0c1e6606d9921f7b3794d0d27ef3f0
  • Loading branch information
cortinico authored and facebook-github-bot committed Jan 16, 2025
1 parent 198adb4 commit 1b15f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release-testing/test-e2e-local.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ async function testRNTesterAndroid(

// Wait for the Android Emulator to be properly loaded and bootstrapped
exec(
"adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed) ]]; do sleep 1; done; input keyevent 82'",
"adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed) ]]; do sleep 1; done;",
);

if (ciArtifacts != null) {
Expand Down

0 comments on commit 1b15f57

Please sign in to comment.