(payload: unknown)
| 22 | let savedEnv: Record<string, string | undefined>; |
| 23 | |
| 24 | function writeEvent(payload: unknown): string { |
| 25 | const p = join(tmp, 'event.json'); |
| 26 | writeFileSync(p, JSON.stringify(payload), 'utf-8'); |
| 27 | return p; |
| 28 | } |
| 29 | |
| 30 | beforeEach(() => { |
| 31 | tmp = mkdtempSync(join(tmpdir(), 'bumpy-ci-comment-')); |
no outgoing calls
no test coverage detected
searching dependent graphs…