import type { FunnelManifestStep, FunnelStepMeta } from '@funnelsgrove/runtime'; const choice = { answerKey: 'routine' } as const; const manifestStep = { id: 'routine', name: 'routine', path: '/routine', filePath: 'src/steps/step-routine.tsx', componentKey: 'stepRoutine', type: 'single_step_choice', choice, title: 'Choose a routine', } as const satisfies FunnelManifestStep; const componentMeta = { id: 'routine', name: 'routine', type: 'single_step_choice', choice, figmaNodeId: 'golden:single-step-choice', title: 'Choose a routine', description: 'Select exactly one routine.', } as const satisfies FunnelStepMeta; export const goldenFixture = { stepType: 'single_step_choice', manifestStep, componentMeta, options: [ { id: 'daily', label: 'Every day' }, { id: 'weekdays', label: 'Weekdays' }, ], persistedAnswer: 'daily', helper: 'useStepChoices', } as const;