Skip to content

Commit d268580

Browse files
committed
Don't run Android tests in release mode.
1 parent c3d43ac commit d268580

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
@@ -83,7 +83,7 @@ jobs:
8383
- name: Run tests (iOS)
8484
run: npm run test:ios:allTests
8585
# TODO: Enable release mode when it works
86-
# run: npm run test:ios -- --mode Release
86+
# run: npm run test:ios:allTests -- --mode Release
8787
working-directory: apps/test-app
8888
test-android:
8989
if: github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Android 🤖')
@@ -153,6 +153,6 @@ jobs:
153153
# Uninstall the app if already in the snapshot (unlikely but could result in a signature mismatch failure)
154154
adb uninstall com.microsoft.reacttestapp || true
155155
# Build, install and run the app
156-
npm run test:android:allTests -- --mode Release
157-
# Wait a bit for the sub-process to terminate, before terminating the emulator
158-
sleep 5
156+
npm run test:android:allTests
157+
# TODO: Enable release mode when it works
158+
# run: npm run test:android:allTests -- --mode Release

0 commit comments

Comments
 (0)