/** * @traqr/core — Test Fixtures * * Complete TraqrConfig objects for each starter pack, * used by the test harness to validate the template engine. */ import type { TraqrConfig } from './config-schema.js'; /** Solo Dev (Tier 0) — minimal, no services */ export declare const SOLO_FIXTURE: TraqrConfig; /** Production (Tier 3) — Linear, Slack, PostHog, daemon */ export declare const PRODUCTION_FIXTURE: TraqrConfig; /** Full (Tier 4) — everything enabled */ export declare const FULL_FIXTURE: TraqrConfig; /** All fixtures indexed by pack name */ export declare const ALL_FIXTURES: Record; /** Pack display names for output */ export declare const PACK_DISPLAY_NAMES: Record; export interface ContentExpectation { requiredFiles: string[]; forbiddenFiles: string[]; contentChecks: Array<{ file: string; mustContain: string[]; mustNotContain: string[]; }>; } /** * Per-pack content expectations for rendered output validation. * Validated against the merged {files, globalFiles} output of * renderAllTemplates(). */ export declare const CONTENT_EXPECTATIONS: Record; //# sourceMappingURL=test-fixtures.d.ts.map