(path: string)
| 39 | } |
| 40 | |
| 41 | async function statusOf(path: string): Promise<[number, number, number] | undefined> { |
| 42 | const matrix = await git.statusMatrix({ fs: memfs, dir: DIR }); |
| 43 | const row = matrix.find((r) => r[0] === path); |
| 44 | return row ? [row[1], row[2], row[3]] : undefined; |
| 45 | } |
| 46 | |
| 47 | describe("stashPushWith / stashListWith / stashPopWith", () => { |
| 48 | beforeEach(() => vol.reset()); |
no test coverage detected