How it works
New pipes start with test mode enabled by default. In test mode:- All trigger, action, and processing nodes run normally. Extraction, parsing, transformation, validation, routing, merging, and review steps execute exactly as they would in production.
- Callback nodes resolve the URL, method, headers, and body but do not send the HTTP request. Instead, they return a preview of what would have been sent.
- Email output nodes render the email HTML but do not send the email. Instead, they return a preview showing the recipients, subject, rendered body, and attachment names.
The HTTP action node is not affected by test mode. It always sends real requests regardless of the test mode setting. Use caution when testing pipelines that include HTTP action nodes pointed at production endpoints.
Toggle test mode
You can toggle test mode from the pipeline editor toolbar:- Open your pipe and click the Pipeline tab to open the editor.
- Find the Run button in the toolbar. Click the dropdown arrow next to it.
- Select Test mode or Real mode.
Dry-run preview
When a run completes in test mode, output steps display a special preview instead of raw output. The preview includes a blue “Test mode preview, not sent” banner and shows a structured breakdown of what would have been sent.Callback preview
The callback dry-run preview shows:- HTTP method and resolved URL
- Request headers (if configured)
- Request body (formatted as JSON or HTML)
Email preview
The email dry-run preview shows:- Recipients (displayed as badges)
- Subject line
- Rendered email body (with HTML preview)
- Attachment file names (if configured)
Credit usage
Test runs consume credits for AI-powered nodes (extract, parse, AI validation, AI-based routing) because those steps execute fully. Output nodes (callback, email) do not consume credits regardless of test mode.When to turn test mode off
Turn test mode off when:- You have verified that your pipeline produces the expected results
- You are ready to start sending real callbacks or emails
- You want to confirm that your webhook endpoint receives the correct payload format
Build your first pipeline
Step-by-step guide to building and testing a pipeline
Callback node
Configure webhook delivery for pipeline results
Email output node
Configure email delivery for pipeline results
Pipeline editor
Learn about the visual pipeline editor