(config: Config)
| 11605 | } |
| 11606 | |
| 11607 | function getConfiguredWorkspaceIds(config: Config): string[] { |
| 11608 | return Array.from(config.loadConfigOrDefault().projects.values()) |
| 11609 | .flatMap((project) => project.workspaces) |
| 11610 | .map((workspace) => workspace.id) |
| 11611 | .filter((id): id is string => typeof id === "string"); |
| 11612 | } |
| 11613 | |
| 11614 | async function handleTaskServiceStreamEndForTest( |
| 11615 | taskService: TaskService, |
no test coverage detected