From 76e5c6c59b3af79d6f854693a64e84d6032b28d6 Mon Sep 17 00:00:00 2001 From: steven Date: Thu, 16 Mar 2023 14:45:36 +0800 Subject: [PATCH] feat: project init --- .github/workflows/e2e_android.yml | 2 +- .github/workflows/e2e_ios.yml | 2 +- Example/testHotUpdate/detox.config.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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'], },