(cmd: string, args: string[])
| 94 | |
| 95 | // Init git repo (qa-only checks for feature branch in diff-aware mode) |
| 96 | const run = (cmd: string, args: string[]) => |
| 97 | spawnSync(cmd, args, { cwd: qaOnlyDir, stdio: 'pipe', timeout: 5000 }); |
| 98 | |
| 99 | run('git', ['init', '-b', 'main']); |
| 100 | run('git', ['config', 'user.email', 'test@test.com']); |
no test coverage detected