(cmd: string, args: string[])
| 51 | beforeAll(() => { |
| 52 | designDir = fs.mkdtempSync(path.join(os.tmpdir(), 'skill-e2e-design-consultation-')); |
| 53 | const run = (cmd: string, args: string[]) => |
| 54 | spawnSync(cmd, args, { cwd: designDir, stdio: 'pipe', timeout: 5000 }); |
| 55 | |
| 56 | run('git', ['init', '-b', 'main']); |
| 57 | run('git', ['config', 'user.email', 'test@test.com']); |
no test coverage detected