(tempDir: string, workspaces: Workspace[])
| 39 | } |
| 40 | |
| 41 | async function writeWorkspaceConfig(tempDir: string, workspaces: Workspace[]): Promise<void> { |
| 42 | const config = new Config(tempDir); |
| 43 | const cfg = config.loadConfigOrDefault(); |
| 44 | cfg.projects.set(path.join(tempDir, "project"), { workspaces }); |
| 45 | await config.saveConfig(cfg); |
| 46 | } |
| 47 | |
| 48 | function buildAgentTask( |
| 49 | taskId: string, |
no test coverage detected