(dir?: string)
| 45 | defaultRoot: string, |
| 46 | ): SandboxGit { |
| 47 | const at = (dir?: string): string => { |
| 48 | const d = dir ?? defaultRoot |
| 49 | assertNoLeadingDash(d, 'dir') |
| 50 | return q(d) |
| 51 | } |
| 52 | |
| 53 | return { |
| 54 | clone: async ({ url, dir, ref, auth, depth }) => { |
no test coverage detected