()
| 932 | } |
| 933 | |
| 934 | function createMembersCollection() { |
| 935 | return createCollection( |
| 936 | mockSyncCollectionOptions<Member>({ |
| 937 | id: `includes-members`, |
| 938 | getKey: (m) => m.id, |
| 939 | initialData: sampleMembers, |
| 940 | }), |
| 941 | ) |
| 942 | } |
| 943 | |
| 944 | it(`multiple parents with the same correlationKey each get the shared children`, async () => { |
| 945 | const teams = createTeamsCollection() |
no test coverage detected