(cmd: string, args: string[])
| 21 | beforeAll(() => { |
| 22 | landDir = fs.mkdtempSync(path.join(os.tmpdir(), 'skill-e2e-land-deploy-')); |
| 23 | const run = (cmd: string, args: string[]) => |
| 24 | spawnSync(cmd, args, { cwd: landDir, stdio: 'pipe', timeout: 5000 }); |
| 25 | |
| 26 | run('git', ['init', '-b', 'main']); |
| 27 | run('git', ['config', 'user.email', 'test@test.com']); |
no test coverage detected