(cmd: string, args: string[])
| 22 | beforeAll(() => { |
| 23 | planDir = fs.mkdtempSync(path.join(os.tmpdir(), 'skill-e2e-plan-ceo-')); |
| 24 | const run = (cmd: string, args: string[]) => |
| 25 | spawnSync(cmd, args, { cwd: planDir, stdio: 'pipe', timeout: 5000 }); |
| 26 | |
| 27 | // Init git repo (CEO review SKILL.md has a "System Audit" step that runs git) |
| 28 | run('git', ['init', '-b', 'main']); |
no test coverage detected