(cmd: string, args: string[])
| 127 | function setupCodexSkillDir(tmpPrefix: string, skillName: 'plan-ceo-review' | 'plan-eng-review'): { skillDir: string; planDir: string; outFile: string } { |
| 128 | const planDir = fs.mkdtempSync(path.join(os.tmpdir(), tmpPrefix)); |
| 129 | const run = (cmd: string, args: string[]) => |
| 130 | spawnSync(cmd, args, { cwd: planDir, stdio: 'pipe', timeout: 5000 }); |
| 131 | |
| 132 | run('git', ['init', '-b', 'main']); |
| 133 | run('git', ['config', 'user.email', 'test@test.com']); |
no test coverage detected