(repoPath: string)
| 204 | } |
| 205 | |
| 206 | return { |
| 207 | resolvedPath, |
| 208 | repoRemoteUrl: await getRepoRemoteUrl(resolvedPath), |
| 209 | initialized, |
| 210 | }; |
| 211 | } |
| 212 | |
| 213 | async function isValidProjectDirectory(repoPath: string): Promise<boolean> { |
| 214 | try { |
| 215 | assertDirectoryPathExists(path.resolve(repoPath)); |
| 216 | return true; |
no test coverage detected