(cmd: string, args: string[])
| 190 | |
| 191 | // Init git repo |
| 192 | const run = (cmd: string, args: string[]) => |
| 193 | spawnSync(cmd, args, { cwd: opDir, stdio: 'pipe', timeout: 5000 }); |
| 194 | run('git', ['init', '-b', 'main']); |
| 195 | run('git', ['config', 'user.email', 'test@test.com']); |
| 196 | run('git', ['config', 'user.name', 'Test']); |
no test coverage detected