test: verify e2e ci workflow#353
Merged
Merged
Conversation
| @@ -1,4 +1,5 @@ | |||
| name: E2E Tests | |||
| # Test trigger for CI verification | |||
There was a problem hiding this comment.
🚩 Leftover debug comment in workflow file
Line 2 adds # Test trigger for CI verification which appears to be a temporary comment used to trigger a CI run (a common pattern when testing workflow changes). This should probably be removed before merging to keep the workflow file clean.
Was this helpful? React with 👍 or 👎 to provide feedback.
…ions; fix android scroll and timeout
- Create ci-master.yaml that runs all E2E scenarios in one continuous session (single stopApp/launchApp), eliminating iOS race conditions and Android repeated cold-start slowness - Increase home screen wait timeout from 45s to 120s for slow CI emulators - Add Maestro debug artifact uploads on failure (screenshots, UI hierarchy) - Add iOS crash log collection on failure - Add Android logcat collection on failure - Run single maestro test instead of 5 individual invocations
Extract setup and test logic into reusable sub-flows so CI and local use the same assertions: - _setup.yaml: stopApp, launchApp, dev-server selection, home wait - _home-check.yaml: home screen element assertions - _zip-test.yaml, _unzip-test.yaml, _password-test.yaml, _progress-test.yaml, _assets-test.yaml: feature-specific tests Individual flows now compose setup + their test sub-flows. ci-master.yaml composes setup + all test sub-flows in sequence. This eliminates duplication and ensures CI and local always test the same behavior.
…apture The android-emulator-runner action runs each script line as a separate sh -c invocation, so TEST_EXIT=0 and adb logcat never worked correctly. Remove the broken logcat capture and rely on Maestro debug artifacts. Increase extendedWaitUntil timeout from 120s to 180s for slow CI emulators.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is a test PR to verify the new Maestro E2E workflow runs correctly on all 4 jobs (iOS/Android × RN/Expo).\n\nDo not merge — will be closed after checks complete.