emu.release

This commit is contained in:
Diego Mello 2023-01-31 13:48:01 -03:00
parent c403590794
commit 1a36e834fd
2 changed files with 4 additions and 3 deletions

View File

@ -523,7 +523,7 @@ jobs:
- run:
name: Run Detox Tests
command: |
yarn detox test --configuration android.att.release --cleanup --headless
yarn detox test --configuration android.emu.release --cleanup --headless
- store_artifacts:
path: artifacts

View File

@ -30,7 +30,8 @@ module.exports = {
},
'android.release': {
type: 'android.apk',
binaryPath: 'android/app/build/outputs/apk/experimentalPlay/release/app-experimental-play-release.apk',
binaryPath:
'android/app/build/outputs/apk/androidTest/experimentalPlay/release/app-experimental-play-release-androidTest.apk',
build: 'cd android ; ./gradlew assembleExperimentalPlayReleaseAndroidTest -DtestBuildType=release ; cd -'
}
},
@ -50,7 +51,7 @@ module.exports = {
emulator: {
type: 'android.emulator',
device: {
avdName: 'Pixel_4_XL_API_31'
avdName: 'myavd'
}
}
},