(args: string[], cwd: string)
| 3268 | describeIfSelected('Ship idempotency', ['ship-idempotency'], () => { |
| 3269 | let idempDir: string; |
| 3270 | const gitRun = (args: string[], cwd: string) => |
| 3271 | spawnSync('git', args, { cwd, stdio: 'pipe', timeout: 5000 }); |
| 3272 | |
| 3273 | beforeAll(() => { |
| 3274 | idempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'skill-e2e-ship-idemp-')); |
no test coverage detected