()
| 95 | } |
| 96 | |
| 97 | function createPostsCollection() { |
| 98 | return createCollection( |
| 99 | mockSyncCollectionOptions<Post>({ |
| 100 | id: `test-posts`, |
| 101 | getKey: (post) => post.id, |
| 102 | initialData: samplePosts, |
| 103 | }), |
| 104 | ) |
| 105 | } |
| 106 | |
| 107 | describe(`Composables`, () => { |
| 108 | describe(`defineForRow`, () => { |
no test coverage detected