()
| 42 | } |
| 43 | |
| 44 | function createProjectsCollection() { |
| 45 | return createCollection( |
| 46 | mockSyncCollectionOptions<Project>({ |
| 47 | id: `includes-type-projects`, |
| 48 | getKey: (p) => p.id, |
| 49 | initialData: [], |
| 50 | }), |
| 51 | ) |
| 52 | } |
| 53 | |
| 54 | function createIssuesCollection() { |
| 55 | return createCollection( |
no test coverage detected