File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 8686 disable-animations : false
8787 force-avd-creation : false
8888 emulator-options : -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
89- rns_e2e_avd_name : e2e_emulator
89+ avd-name : e2e_emulator
9090 arch : x86_64
9191 script : echo "Generated AVD snapshot for caching."
9292
@@ -102,7 +102,7 @@ jobs:
102102 disable-animations : false
103103 force-avd-creation : false
104104 emulator-options : -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
105- rns_e2e_avd_name : e2e_emulator
105+ avd-name : e2e_emulator
106106 arch : x86_64
107107 script : yarn test-e2e-android
108108
Original file line number Diff line number Diff line change 8686 disable-animations : false
8787 force-avd-creation : false
8888 emulator-options : -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
89- rns_e2e_avd_name : e2e_emulator
89+ avd-name : e2e_emulator
9090 arch : x86_64
9191 script : echo "Generated AVD snapshot for caching."
9292
@@ -102,7 +102,7 @@ jobs:
102102 disable-animations : false
103103 force-avd-creation : false
104104 emulator-options : -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
105- rns_e2e_avd_name : e2e_emulator
105+ avd-name : e2e_emulator
106106 arch : x86_64
107107 script : yarn test-e2e-android
108108
Original file line number Diff line number Diff line change @@ -39,9 +39,8 @@ function detectLocalAndroidEmulator() {
3939
4040function detectAndroidEmulatorName ( ) {
4141 // "RNS_E2E_AVD_NAME" can be set for local developement
42- return process . env . RNS_E2E_AVD_NAME || isRunningCI
43- ? DEFAULT_CI_AVD_NAME
44- : detectLocalAndroidEmulator ( ) ;
42+ if ( isRunningCI ) return DEFAULT_CI_AVD_NAME ;
43+ return process . env . RNS_E2E_AVD_NAME || detectLocalAndroidEmulator ( ) ;
4544}
4645
4746/**
You can’t perform that action at this time.
0 commit comments