()
| 45 | ] |
| 46 | |
| 47 | function createUsers() { |
| 48 | return createCollection( |
| 49 | mockSyncCollectionOptions<User>({ |
| 50 | id: `nested-select-users`, |
| 51 | getKey: (u) => u.id, |
| 52 | initialData: data, |
| 53 | }), |
| 54 | ) |
| 55 | } |
| 56 | |
| 57 | describe(`nested select projections`, () => { |
| 58 | let users: ReturnType<typeof createUsers> |
no test coverage detected