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 CI test-cli exit code 123 by replacing xargs with direct bun test
The xargs command was returning exit code 123 despite all tests passing due to
orphaned child processes from e2e tests that spawn CLI instances. The 11-second
delay after tests completed indicated hanging processes.
Fix: Replace `find | xargs -I {} bun test {}` with `bun test $TEST_FILES` which
runs all tests in a single invocation with proper process cleanup.
Applied to:
- Regular test jobs (test-cli and other packages)
- Integration test jobs (test-integration-*)
- Billing integration tests
- Internal integration tests
0 commit comments