(autoIndex: `off` | `eager` = `eager`)
| 179 | } |
| 180 | |
| 181 | function createProductsCollection(autoIndex: `off` | `eager` = `eager`) { |
| 182 | return createCollection( |
| 183 | mockSyncCollectionOptions({ |
| 184 | id: `join-subquery-test-products`, |
| 185 | getKey: (product) => product.id, |
| 186 | initialData: sampleProducts, |
| 187 | autoIndex, |
| 188 | }), |
| 189 | ) |
| 190 | } |
| 191 | |
| 192 | function createTrialsCollection(autoIndex: `off` | `eager` = `eager`) { |
| 193 | return createCollection( |
no test coverage detected
searching dependent graphs…