()
| 7 | const roots: string[] = [] |
| 8 | |
| 9 | async function tempRoot() { |
| 10 | const root = await mkdtemp(join(tmpdir(), "opencode-store-cleanup-")) |
| 11 | roots.push(root) |
| 12 | return root |
| 13 | } |
| 14 | |
| 15 | async function writeStore(root: string, name: string, value: string, modified: Date) { |
| 16 | await writeFile(join(root, name), value) |
no test coverage detected