import type { PendingEffect } from '../../src/generated/scenarios.js'; export function effect( type: string, data: Record = {}, overrides: Partial = {}, ): PendingEffect { return { runId: 'run-1', scenarioId: 'scenario-1', nodeId: `${type}-1`, type, data, ...overrides, }; }