()
| 70 | * Throws if createSharedRepo() hasn't been called. |
| 71 | */ |
| 72 | export function getSharedRepoPath(): string { |
| 73 | if (!sharedRepoPath) { |
| 74 | throw new Error("Shared repo not initialized. Call createSharedRepo() in beforeAll()."); |
| 75 | } |
| 76 | return sharedRepoPath; |
| 77 | } |
| 78 | |
| 79 | interface SharedWorkspaceContext { |
| 80 | env: TestEnvironment; |
no outgoing calls