()
| 65 | ] |
| 66 | |
| 67 | function createPersonsCollection() { |
| 68 | return createCollection( |
| 69 | mockSyncCollectionOptions<Person>({ |
| 70 | id: `test-persons`, |
| 71 | getKey: (person) => person.id, |
| 72 | initialData: samplePersons, |
| 73 | }), |
| 74 | ) |
| 75 | } |
| 76 | |
| 77 | describe(`Nested Properties Types`, () => { |
| 78 | const personsCollection = createPersonsCollection() |
no test coverage detected