()
| 24 | type DepartmentRow = OutputWithVirtual<Department> |
| 25 | |
| 26 | function createUsersCollection() { |
| 27 | return createCollection( |
| 28 | mockSyncCollectionOptions<User>({ |
| 29 | id: `test-users`, |
| 30 | getKey: (user) => user.id, |
| 31 | initialData: [], |
| 32 | }), |
| 33 | ) |
| 34 | } |
| 35 | |
| 36 | function createDepartmentsCollection() { |
| 37 | return createCollection( |
no test coverage detected