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
test: fix Windows CI failures in install and bridge tests
- Replace `/bin/echo` with `process.execPath` in bridge test — /bin/echo
does not exist on Windows, causing ENOENT on spawn; process.execPath
(the current Bun binary) exists on all platforms and exits quickly
without speaking JSON-RPC as expected
- Add `unixtest` guard to postinstall, bin-wrapper, and integration tests
— on Windows, postinstall.mjs takes a different early-exit path that
skips hard-link setup; dummy binaries are Unix shell scripts that
cannot be executed on Windows; skip all Unix-specific test paths using
the same `process.platform !== "win32" ? test : test.skip` pattern
already used in fsmonitor.test.ts
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments