()
| 33 | * Call in beforeAll() to share resources across tests. |
| 34 | */ |
| 35 | export async function createSharedRepo(): Promise<void> { |
| 36 | await preloadTestModules(); |
| 37 | sharedEnv = await createTestEnvironment(); |
| 38 | sharedRepoPath = await createTempGitRepo(); |
| 39 | await trustProject(sharedEnv, sharedRepoPath); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Cleanup shared test environment. |
no test coverage detected