(gitDir: string)
| 73 | }; |
| 74 | |
| 75 | export const configureGitUser = async (gitDir: string): Promise<void> => { |
| 76 | await runGit(['config', 'user.email', 'test@example.com'], gitDir); |
| 77 | await runGit(['config', 'user.name', 'Test User'], gitDir); |
| 78 | }; |
| 79 | |
| 80 | export const prepareEnvironment = async ({ |
| 81 | remotes = 1 |
no test coverage detected
searching dependent graphs…