()
| 34 | } |
| 35 | |
| 36 | function createDepartmentsCollection() { |
| 37 | return createCollection( |
| 38 | mockSyncCollectionOptions<Department>({ |
| 39 | id: `test-departments`, |
| 40 | getKey: (dept) => dept.id, |
| 41 | initialData: [], |
| 42 | }), |
| 43 | ) |
| 44 | } |
| 45 | |
| 46 | describe(`Join Types - Type Safety`, () => { |
| 47 | test(`inner join should have required properties for both tables`, () => { |
no test coverage detected