()
| 37 | ] |
| 38 | |
| 39 | function createUsersCollection() { |
| 40 | return createCollection( |
| 41 | mockSyncCollectionOptions<User>({ |
| 42 | id: `case-when-users`, |
| 43 | getKey: (user) => user.id, |
| 44 | initialData: sampleUsers, |
| 45 | }), |
| 46 | ) |
| 47 | } |
| 48 | |
| 49 | function createPostsCollection() { |
| 50 | return createCollection( |
no test coverage detected