(
overrides: Partial<PR> & { number: number; title: string }
)
| 281 | |
| 282 | // Helper to create a minimal PR object for testing. |
| 283 | function createPR( |
| 284 | overrides: Partial<PR> & { number: number; title: string } |
| 285 | ): PR { |
| 286 | return { |
| 287 | author: null, |
| 288 | participants: { nodes: [] }, |
| 289 | closingIssuesReferences: { edges: [] }, |
| 290 | ...overrides |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | describe('collectContributors', () => { |
| 295 | it('returns empty array when no PRs', () => { |