From 1a36e834fddf600fe96f6c7ffeb8b2f6a0588e79 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Tue, 31 Jan 2023 13:48:01 -0300 Subject: [PATCH] emu.release --- .circleci/config.yml | 2 +- .detoxrc.js | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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' } } },