()
| 60 | ] |
| 61 | |
| 62 | function createOrdersCollection() { |
| 63 | return createCollection( |
| 64 | mockSyncCollectionOptions<Order>({ |
| 65 | id: `test-orders`, |
| 66 | getKey: (order) => order.id, |
| 67 | initialData: sampleOrders, |
| 68 | }), |
| 69 | ) |
| 70 | } |
| 71 | |
| 72 | describe(`Query GROUP BY Types`, () => { |
| 73 | const ordersCollection = createOrdersCollection() |
no test coverage detected