()
| 24 | ] |
| 25 | |
| 26 | function createMessagesCollection() { |
| 27 | return createCollection( |
| 28 | mockSyncCollectionOptions<Message>({ |
| 29 | id: `messages`, |
| 30 | getKey: (m) => m.id, |
| 31 | initialData: initialMessages, |
| 32 | }), |
| 33 | ) |
| 34 | } |
| 35 | |
| 36 | describe(`Select spread typing`, () => { |
| 37 | test(`spreading the source alias projects the full row type`, () => { |
no test coverage detected