### Summary On Windows, `pnpm -C packages/cli test` fails due to path separator differences (backslashes vs forward slashes) in a few tests. ### Steps to Reproduce 1) pnpm install 2) pnpm -C packages/cli test ### Actual Tests fail in: - packages/cli/src/cli/utils/buckets.spec.ts - packages/cli/src/cli/utils/find-locale-paths.spec.ts ### Expected Tests pass on all OSes. ### Proposed Fix Normalize path strings in test assertions (convert `\` to `/`) so comparisons are OS-agnostic. ### Env Windows 11, Node v22.19.0, pnpm 9.12.3 <img width="952" height="175" alt="Image" src="https://github.com/user-attachments/assets/15819054-ef86-41ab-b5ab-981e726fed2c" /> <img width="946" height="498" alt="Image" src="https://github.com/user-attachments/assets/0771e191-c8c2-4be5-b0cd-fffd61c00741" /> <img width="952" height="567" alt="Image" src="https://github.com/user-attachments/assets/4f50ac9f-6945-40a1-8a23-3e5c0d0dc463" />