| 24 | import type { TestEnvironment } from "../../ipc/setup"; |
| 25 | |
| 26 | interface CreationHarness { |
| 27 | env: TestEnvironment; |
| 28 | repoPath: string; |
| 29 | projectPath: string; |
| 30 | draftId: string; |
| 31 | view: RenderedApp; |
| 32 | chat: ChatHarness; |
| 33 | dispose(): Promise<void>; |
| 34 | } |
| 35 | |
| 36 | async function createCreationHarness(options?: { |
| 37 | beforeRender?: (env: TestEnvironment) => void; |
no outgoing calls
no test coverage detected