()
| 17 | const AUTHOR = { name: "t", email: "t@example.test" }; |
| 18 | |
| 19 | async function init() { |
| 20 | await memfs.promises.mkdir(DIR, { recursive: true }); |
| 21 | await git.init({ fs: memfs, dir: DIR, defaultBranch: "main" }); |
| 22 | } |
| 23 | |
| 24 | async function statusOf(path: string): Promise<[number, number, number] | undefined> { |
| 25 | const matrix = await git.statusMatrix({ fs: memfs, dir: DIR }); |
no test coverage detected