/** * Inline HTML/Markdown fixtures for contract tests (ADR-0003). * * Unlike the PDF corpus (ADR-0002), these are small synthetic documents with * no PII and are owned by this repo. */ export interface TextFixture { readonly id: string; readonly knownGoodQuote: string; } export const HTML_FIXTURE = ` Fixture Title

Hello World

Known good quote for HTML ingest testing.

`; export const MARKDOWN_FIXTURE = `# Hello World Known good quote for Markdown ingest testing. **bold** and _italic_ text. `; export const TEXT_FIXTURES: readonly TextFixture[] = [ { id: "html-basic", knownGoodQuote: "Known good quote for HTML ingest testing.", }, { id: "markdown-basic", knownGoodQuote: "Known good quote for Markdown ingest testing.", }, ];