(cmd: string)
| 34 | |
| 35 | describe("resolveWindowsCommand", () => { |
| 36 | const lookup = (cmd: string) => `C:\\Users\\me\\.local\\bin\\${cmd}.exe`; |
| 37 | |
| 38 | it("returns the command unchanged on non-Windows platforms", () => { |
| 39 | expect(resolveWindowsCommand("uvx", "linux", lookup)).toBe("uvx"); |
no outgoing calls
no test coverage detected