(id: string)
| 89 | ] |
| 90 | |
| 91 | function createMessagesCollection(id: string) { |
| 92 | return createCollection( |
| 93 | mockSyncCollectionOptions<Message>({ |
| 94 | id, |
| 95 | getKey: (message) => message.id, |
| 96 | initialData: messagesData, |
| 97 | }), |
| 98 | ) |
| 99 | } |
| 100 | |
| 101 | function createToolCallsCollection(id: string) { |
| 102 | return createCollection( |
no test coverage detected