(config: Config, workspaceId: string)
| 84 | } |
| 85 | |
| 86 | function findWorkspaceInConfig(config: Config, workspaceId: string) { |
| 87 | return Array.from(config.loadConfigOrDefault().projects.values()) |
| 88 | .flatMap((project) => project.workspaces) |
| 89 | .find((workspace) => workspace.id === workspaceId); |
| 90 | } |
| 91 | |
| 92 | function createWorkspaceTurnMetadata(projectPath: string): WorkspaceMetadata { |
| 93 | return { |
no test coverage detected