diff --git a/.circleci/config.yml b/.circleci/config.yml index 7bca8ef61..0722e92ed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/.detoxrc.js b/.detoxrc.js index 968766beb..7217631d0 100644 --- a/.detoxrc.js +++ b/.detoxrc.js @@ -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' } } },