(projectPath: string, workspaceName: string)
| 37 | } |
| 38 | |
| 39 | getWorkspacePath(projectPath: string, workspaceName: string): string { |
| 40 | const projectName = getProjectName(projectPath); |
| 41 | return path.join(this.srcBaseDir, projectName, workspaceName); |
| 42 | } |
| 43 | |
| 44 | private getGitExecOptions(trusted?: boolean, signal?: AbortSignal): GitExecOptions { |
| 45 | const env = trusted ? undefined : GIT_NO_HOOKS_ENV; |
no test coverage detected