test(e2e): split the e2e suite into files so they run in parallel - #12
Merged
Merged
Conversation
dart test runs the tests of one file in sequence and files in parallel. All e2e tests lived in one file, so every shot ran one after another. Split by feature, sharing the helpers in e2e_helpers.dart. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
The actions test shot twelve times in sequence and finished last on CI. Its buttons, unreachable targets, and tap order parts share nothing, so each gets its own file and runs in parallel with the others. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
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.
dart testruns the tests of one file in sequence and separate files in parallel (half the processors by default).All e2e tests lived in
test/e2e/e2e_test.dart, so eachshot(oneflutter testprocess) ran one after another.This splits the suite by feature into
workflow,errors,shell,widget,actions,reach,order,capture, andenter, with the shared helpers intest/e2e/e2e_helpers.dart.The former actions test is split by the case it covers into
actions,reach, andorder; its parts shared nothing.The assertions are unchanged, and the workflow stays a single job.
The e2e step on CI went from 6m49s to 4m56s.
Locally,
dart test -P e2ewent from 4m19s (-j 1) to 1m51s.🤖 Generated with Claude Code