()
| 80 | ] |
| 81 | |
| 82 | function createUsersCollection() { |
| 83 | return createCollection( |
| 84 | mockSyncCollectionOptions<User>({ |
| 85 | id: `test-users`, |
| 86 | getKey: (user) => user.id, |
| 87 | initialData: sampleUsers, |
| 88 | }), |
| 89 | ) |
| 90 | } |
| 91 | |
| 92 | function createDepartmentsCollection() { |
| 93 | return createCollection( |
no test coverage detected