/** Minimal published article payloads for SSR blog e2e (see e2e/global-setup.ts). */ export const E2E_MOCK_API_HOST = '127.0.0.1' export const E2E_MOCK_API_PORT = 3000 export const e2eBlogArticleSlug = 'e2e-sample-article' export const e2eBlogArticleSummary = { id: 9001, slug: e2eBlogArticleSlug, title: 'مقاله نمونه برای تست انتها به انتها', excerpt: 'خلاصه کوتاه برای کارت مقاله در لیست وبلاگ.', categorySlug: 'city-guides', categoryName: 'راهنمای شهرها', city: { id: 1, slug: 'tehran', name: 'تهران' }, eventCategory: null, featuredImageUrl: null, readingMinutes: 5, isFeatured: false, publishedAt: '2030-01-15T10:00:00.000Z', createdAt: '2030-01-10T10:00:00.000Z', updatedAt: '2030-01-15T10:00:00.000Z', } export const e2eBlogArticleDetail = { ...e2eBlogArticleSummary, metaTitle: null, metaDescription: null, bodyHtml: '

متن نمونه مقاله برای تست Playwright.

', }