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
refactor(test): simplify binary test output to clean checklist format
Replace verbose separator lines and multi-line logging with a simple
checklist format for better readability in CI logs.
Before:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Testing: JS Distribution (dist/index.js)
Path: /path/to/binary
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Binary exists: true
✓ Binary found and ready for testing
After:
✓ JS Distribution (dist/index.js)
Changes:
- Single line per binary with status symbol (✓/⊘/✗)
- Condensed error/info messages with 2-space indent
- Removed separator lines and verbose logging
- Cleaner CI output for quick status scanning
0 commit comments