(pathToInspect: string)
| 88 | } |
| 89 | |
| 90 | async inspectPath(pathToInspect: string): Promise<GitPathInspection> { |
| 91 | this.assertOpen(); |
| 92 | return this.inspectResolvedPath(path.resolve(pathToInspect)); |
| 93 | } |
| 94 | |
| 95 | async ensureRepository( |
| 96 | pathToInspect: string, |
nothing calls this directly
no test coverage detected