()
| 22 | const isogit = git as unknown as IsomorphicGitPlumbingClient; |
| 23 | |
| 24 | async function init() { |
| 25 | await memfs.promises.mkdir(DIR, { recursive: true }); |
| 26 | await git.init({ fs: memfs, dir: DIR, defaultBranch: "main" }); |
| 27 | } |
| 28 | |
| 29 | describe("hashObjectWith", () => { |
| 30 | beforeEach(() => vol.reset()); |
no test coverage detected