(...args: string[])
| 430 | } |
| 431 | |
| 432 | export function silentGit(...args: string[]) { |
| 433 | return _exec({ silent: true }, process.env.GIT_BIN || 'git', args); |
| 434 | } |
| 435 | |
| 436 | /** |
| 437 | * Launch the given entry in an child process isolated to the test environment. |
no test coverage detected