()
| 29 | > |
| 30 | |
| 31 | function createUsers() { |
| 32 | return createCollection( |
| 33 | mockSyncCollectionOptions<User>({ |
| 34 | id: `case-when-type-users`, |
| 35 | getKey: (user) => user.id, |
| 36 | initialData: [], |
| 37 | }), |
| 38 | ) |
| 39 | } |
| 40 | |
| 41 | function createPosts() { |
| 42 | return createCollection( |
no test coverage detected