diff --git a/.github/workflows/e2e_android.yml b/.github/workflows/e2e_android.yml index 2deab7b..b6ed804 100644 --- a/.github/workflows/e2e_android.yml +++ b/.github/workflows/e2e_android.yml @@ -201,7 +201,7 @@ jobs: - name: Detox Tests uses: reactivecircus/android-emulator-runner@v2 - timeout-minutes: 40 + timeout-minutes: 60 with: api-level: ${{ matrix.api-level }} avd-name: TestingAVD diff --git a/.github/workflows/e2e_ios.yml b/.github/workflows/e2e_ios.yml index 5b95e21..04b866a 100644 --- a/.github/workflows/e2e_ios.yml +++ b/.github/workflows/e2e_ios.yml @@ -178,5 +178,5 @@ jobs: run: nohup sh -c "sleep 30 && xcrun simctl spawn booted log stream --level debug --style compact > simulator.log 2>&1 &" - name: Detox Test - timeout-minutes: 30 + timeout-minutes: 60 run: yarn test:ios-release diff --git a/Example/testHotUpdate/detox.config.js b/Example/testHotUpdate/detox.config.js index 039c58c..a7d6218 100644 --- a/Example/testHotUpdate/detox.config.js +++ b/Example/testHotUpdate/detox.config.js @@ -44,7 +44,7 @@ module.exports = { headless: Boolean(process.env.CI), gpuMode: process.env.CI ? 'off' : undefined, device: { - avdName: 'Pixel_3a_API_33_arm64-v8a', + avdName: 'TestingAVD', }, utilBinaryPaths: ['./cache/test-butler-app.apk'], }, @@ -58,7 +58,7 @@ module.exports = { 'genymotion.emulator.name': { type: 'android.genycloud', device: { - recipeName: 'Pixel_3a_API_33_arm64-v8a', + recipeName: 'TestingAVD', }, utilBinaryPaths: ['./cache/test-butler-app.apk'], },