(cmd: string, args: string[])
| 330 | |
| 331 | // Set up a git repo so there's project/branch context to reference |
| 332 | const run = (cmd: string, args: string[]) => |
| 333 | spawnSync(cmd, args, { cwd: sessionDir, stdio: 'pipe', timeout: 5000 }); |
| 334 | run('git', ['init', '-b', 'main']); |
| 335 | run('git', ['config', 'user.email', 'test@test.com']); |
| 336 | run('git', ['config', 'user.name', 'Test']); |
no test coverage detected