(id: string, size: number)
| 1761 | }; |
| 1762 | |
| 1763 | const buildWidePost = (id: string, size: number): Post => |
| 1764 | buildPost(id, { |
| 1765 | id: `hero-${id}`, |
| 1766 | headline: 'wide', |
| 1767 | significance: SIGNIFICANCE_BY_SIZE[size] ?? 'notable', |
| 1768 | size, |
| 1769 | highlightedAt: '2026-05-25T00:00:00.000Z', |
| 1770 | }); |
| 1771 | |
| 1772 | const buildFeedPage = (posts: Post[]): Connection<Post> => ({ |
| 1773 | pageInfo: { hasNextPage: false, endCursor: '' }, |
no test coverage detected