(cwd)
| 24 | } |
| 25 | |
| 26 | export function initGitRepo(cwd) { |
| 27 | run("git", ["init", "-b", "main"], { cwd }); |
| 28 | run("git", ["config", "user.name", "Codex Plugin Tests"], { cwd }); |
| 29 | run("git", ["config", "user.email", "tests@example.com"], { cwd }); |
| 30 | run("git", ["config", "commit.gpgsign", "false"], { cwd }); |
| 31 | run("git", ["config", "tag.gpgsign", "false"], { cwd }); |
| 32 | } |
no test coverage detected