(cmd: string, args: string[])
| 31 | |
| 32 | // Init git repo |
| 33 | const run = (cmd: string, args: string[]) => |
| 34 | spawnSync(cmd, args, { cwd: workDir, stdio: 'pipe', timeout: 5000 }); |
| 35 | run('git', ['init', '-b', 'main']); |
| 36 | run('git', ['config', 'user.email', 'test@test.com']); |
| 37 | run('git', ['config', 'user.name', 'Test']); |
no test coverage detected