You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(go): restore error message visibility in formatter output
The formatter was suppressing critical error information by returning
empty strings for build failures, individual test failures, and most
FAIL output. This made debugging difficult when tests failed.
Changes:
- handleFail now shows build failures as "FAIL\t{package} [build failed]"
- handleFail now shows individual test failures as "FAIL\t{package}/{test}"
- handleBuildFail added to show "BUILD FAILED" instead of filtering
- handleOutput preserves all FAIL\t output instead of selective filtering
Tests updated to reflect new expected behavior that prioritizes error
visibility over minimal output.
0 commit comments