(id: string, title: string)
| 16 | const SPACE_ID = 'space-1'; |
| 17 | |
| 18 | function makeSource(id: string, title: string): SourceRecord { |
| 19 | return { |
| 20 | id, |
| 21 | spaceId: SPACE_ID, |
| 22 | kind: 'manual-note', |
| 23 | title, |
| 24 | tags: ['engineering'], |
| 25 | status: 'active', |
| 26 | createdAt: '2026-03-30T00:00:00.000Z', |
| 27 | updatedAt: '2026-03-30T00:00:00.000Z', |
| 28 | }; |
| 29 | } |
| 30 | |
| 31 | function makeProjectTaggedSource(id: string, title: string, projectSlug: string): SourceRecord { |
| 32 | return { |
no outgoing calls
no test coverage detected