()
| 56 | ] |
| 57 | |
| 58 | function createUsersCollection() { |
| 59 | return createCollection( |
| 60 | mockSyncCollectionOptions<User>({ |
| 61 | id: `test-users`, |
| 62 | getKey: (user) => user.id, |
| 63 | initialData: sampleUsers, |
| 64 | }), |
| 65 | ) |
| 66 | } |
| 67 | |
| 68 | function createDepartmentsCollection() { |
| 69 | return createCollection( |
no test coverage detected