()
| 73 | } |
| 74 | |
| 75 | export function generateUniqueArticle(): ArticleData { |
| 76 | const timestamp = Date.now(); |
| 77 | return { |
| 78 | title: `Test Article ${timestamp}`, |
| 79 | description: `Description for test article ${timestamp}`, |
| 80 | body: `This is the body content for test article created at ${timestamp}. It contains enough text to be meaningful.`, |
| 81 | tags: ['test', 'playwright'], |
| 82 | }; |
| 83 | } |
no outgoing calls
no test coverage detected