Skip to content

Commit 88a424b

Browse files
committed
Don't run Android tests in release mode.
1 parent 082fb42 commit 88a424b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: Run tests (iOS)
8181
run: npm run test:ios:allTests
8282
# TODO: Enable release mode when it works
83-
# run: npm run test:ios -- --mode Release
83+
# run: npm run test:ios:allTests -- --mode Release
8484
working-directory: apps/test-app
8585
test-android:
8686
if: github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Android 🤖')
@@ -147,6 +147,6 @@ jobs:
147147
# Uninstall the app if already in the snapshot (unlikely but could result in a signature mismatch failure)
148148
adb uninstall com.microsoft.reacttestapp || true
149149
# Build, install and run the app
150-
npm run test:android:allTests -- --mode Release
151-
# Wait a bit for the sub-process to terminate, before terminating the emulator
152-
sleep 5
150+
npm run test:android:allTests
151+
# TODO: Enable release mode when it works
152+
# run: npm run test:android:allTests -- --mode Release

0 commit comments

Comments
 (0)