()
| 114 | }) |
| 115 | |
| 116 | function createNote() { |
| 117 | return { |
| 118 | title: faker.lorem.words(3), |
| 119 | content: faker.lorem.paragraphs(3), |
| 120 | } satisfies Omit<Note, 'id' | 'createdAt' | 'updatedAt' | 'type' | 'ownerId'> |
| 121 | } |
| 122 | function createNoteWithImage() { |
| 123 | return { |
| 124 | ...createNote(), |
no outgoing calls
no test coverage detected