import { defineFactory } from "@repo/core-testing/factory"; import type { Article } from "../entities/models/article"; export const articleFactory = defineFactory
(({ sequence }) => ({ id: `article-${sequence}`, title: `Article ${sequence}`, slug: `article-${sequence}`, content: null, status: "draft", authorId: "user-1", createdAt: new Date("2026-01-01T00:00:00Z"), updatedAt: new Date("2026-01-01T00:00:00Z"), }));