flowengine-n8n-workflow-builder
Version:
Build n8n workflows from text using AI. Connect to Claude, Cursor, or any LLM to generate and validate n8n workflows with expert knowledge and intelligent auto-fixing. Built by FlowEngine. Now with real node parameter schemas from n8n packages!
26 lines • 717 B
TypeScript
/**
* Workflow Tester - Dry-run and Simulation
*
* Test workflows without executing them, with mock data injection
* and validation of execution paths.
*/
import type { Workflow } from './generator.js';
export interface TestResult {
success: boolean;
errors: string[];
warnings: string[];
executionPath: string[];
estimatedDuration?: number;
}
/**
* Perform dry-run test of workflow
*/
export declare function testWorkflow(workflow: Workflow, mockData?: Record<string, any>): TestResult;
/**
* Validate workflow can execute end-to-end
*/
export declare function validateExecutionPath(workflow: Workflow): {
valid: boolean;
issues: string[];
};
//# sourceMappingURL=tester.d.ts.map