(path: string)
| 11 | return { success: true, stdout: command === "pwd" ? `${opts?.cwd}\n` : "", stderr: "", exitCode: 0 }; |
| 12 | }, |
| 13 | async readFile(path: string) { return { content: files.get(path) ?? "" }; }, |
| 14 | async writeFile(path: string, content: string) { files.set(path, content); }, |
| 15 | }; |
| 16 | return { |
no test coverage detected