(cmd: string, args: string[])
| 19 | dirs.push(dir); |
| 20 | |
| 21 | const run = (cmd: string, args: string[]) => |
| 22 | spawnSync(cmd, args, { cwd: dir, stdio: 'pipe', timeout: 5000 }); |
| 23 | |
| 24 | run('git', ['init', '-b', 'main']); |
| 25 | run('git', ['config', 'user.email', 'test@test.com']); |
no test coverage detected