feat(summary): auto-enable All Tests section for small runs#137
Merged
Conversation
Switch show-all-tests default from false to auto. In auto mode the section renders when total ≤ 200, or when there is a single suite and total ≤ 1000 — covering the common "one DLL / one package" shape without any config change on the consumer side. Also improves the All Tests UX: - Suite header shows per-bucket counts and duration instead of raw total - Suites with any failure/skip, or ≤ 25 tests, render open by default - Tests within each suite sorted failed → errored → skipped → passed, tiebroken by duration desc so slow/broken tests surface at the top
Contributor
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.
Summary
Improves the All Tests section in the CI job summary. The
show-all-testsinput now defaults toauto, which renders the section automatically for small runs — no config change needed on consumer workflows. Also ships three UX improvements to how tests are presented within each suite.Changes
show-all-tests: auto(new default) — renders All Tests whentotal ≤ 200, or≤ 1000with a single suite.true/falsestill force the behaviour explicitly.✅ P · ❌ F · ⏭️ K · ⏱️ durationinstead of a raw count, giving triage signal without expanding.<details open>so relevant info is immediately visible.failed → errored → skipped → passed, tiebroken by duration desc; broken/slow tests surface at the top.Test plan
pnpm typecheck— cleanpnpm lint— cleanpnpm test— 707 tests pass (25 files)maximn/google-maps) and confirm All Tests renders withoutshow-all-tests: truein the workflow file