test: use spawnSyncAndAssert in windowsHide test - #65351
Open
ganjanggejang wants to merge 1 commit into
Open
Conversation
Signed-off-by: Junsoo Ha <junsoo2018@naver.com>
aduh95
approved these changes
Aug 17, 2026
Collaborator
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #65351 +/- ##
==========================================
- Coverage 90.13% 90.11% -0.02%
==========================================
Files 752 752
Lines 251820 251820
Branches 47352 47350 -2
==========================================
- Hits 226974 226934 -40
- Misses 16158 16229 +71
+ Partials 8688 8657 -31 🚀 New features to boost your workflow:
|
lpinca
approved these changes
Aug 17, 2026
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.
Replace the manual status, signal, stdout and stderr assertions with
spawnSyncAndAssert()fromtest/common/child_process.The previous code asserted the status first, so a CI failure only
reported the exit status and the child's output was never shown. On
failure the helper prints stdout, stderr, status, signal and the
command that was run.
Only changed sync spawn(), because there is no async helper yet.