()
| 85 | ] |
| 86 | |
| 87 | function createUsersCollection() { |
| 88 | return createCollection( |
| 89 | mockSyncCollectionOptions<User>({ |
| 90 | id: `test-users`, |
| 91 | getKey: (user) => user.id, |
| 92 | initialData: sampleUsers, |
| 93 | }), |
| 94 | ) |
| 95 | } |
| 96 | |
| 97 | function createPostsCollection() { |
| 98 | return createCollection( |
no test coverage detected
searching dependent graphs…