(root: string, name: string, value: string, modified: Date)
| 13 | } |
| 14 | |
| 15 | async function writeStore(root: string, name: string, value: string, modified: Date) { |
| 16 | await writeFile(join(root, name), value) |
| 17 | await utimes(join(root, name), modified, modified) |
| 18 | } |
| 19 | |
| 20 | afterEach(async () => { |
| 21 | await Promise.all(roots.splice(0).map((root) => rm(root, { recursive: true, force: true }))) |
no test coverage detected