Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
31 lines
1015 B
TypeScript
31 lines
1015 B
TypeScript
/** 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: '<p>متن نمونه مقاله برای تست Playwright.</p>',
|
|
}
|