()
| 62 | } |
| 63 | |
| 64 | function createCommentsCollection() { |
| 65 | return createCollection( |
| 66 | mockSyncCollectionOptions<Comment>({ |
| 67 | id: `includes-type-comments`, |
| 68 | getKey: (c) => c.id, |
| 69 | initialData: [], |
| 70 | }), |
| 71 | ) |
| 72 | } |
| 73 | |
| 74 | function createMessagesCollection() { |
| 75 | return createCollection( |
no test coverage detected