(cmd: string, args: string[])
| 26 | |
| 27 | // Init git repo with initial docs |
| 28 | const run = (cmd: string, args: string[]) => |
| 29 | spawnSync(cmd, args, { cwd: docReleaseDir, stdio: 'pipe', timeout: 5000 }); |
| 30 | |
| 31 | run('git', ['init', '-b', 'main']); |
| 32 | run('git', ['config', 'user.email', 'test@test.com']); |
no test coverage detected