(metadata: WorkspaceMetadataForRuntime)
| 153 | * workspace root instead of reconstructing it from canonical naming conventions. |
| 154 | */ |
| 155 | export function createRuntimeForWorkspace(metadata: WorkspaceMetadataForRuntime): Runtime { |
| 156 | return createRuntime(metadata.runtimeConfig, { |
| 157 | projectPath: metadata.projectPath, |
| 158 | workspaceName: metadata.name, |
| 159 | workspacePath: metadata.namedWorkspacePath, |
| 160 | }); |
| 161 | } |
no test coverage detected