(projectPath: string, projectConfig?: ProjectConfig)
| 110 | } |
| 111 | |
| 112 | export function getProjectDisplayName(projectPath: string, projectConfig?: ProjectConfig): string { |
| 113 | const displayName = projectConfig?.displayName?.trim(); |
| 114 | return displayName && displayName.length > 0 |
| 115 | ? displayName |
| 116 | : PlatformPaths.getProjectName(projectPath); |
| 117 | } |
| 118 | |
| 119 | export function formatProjectHierarchyLabel( |
| 120 | projectPath: string, |
no test coverage detected