(cmd: string, args: string[])
| 33 | beforeAll(() => { |
| 34 | workDir = fs.mkdtempSync(path.join(os.tmpdir(), 'skill-e2e-office-hours-forcing-')); |
| 35 | const run = (cmd: string, args: string[]) => |
| 36 | spawnSync(cmd, args, { cwd: workDir, stdio: 'pipe', timeout: 5000 }); |
| 37 | |
| 38 | run('git', ['init', '-b', 'main']); |
| 39 | run('git', ['config', 'user.email', 'test@test.com']); |
no test coverage detected