Running and Testing Workflows
Building workflows is only half the battle. You also need to know how to run them, test them, and fix them when something goes wrong.
n8n provides powerful tools for understanding what your workflow is doing. In this lesson, you'll learn to use these tools by debugging a broken workflow.
What you'll practice:
- Running workflows in different modes
- Reading error messages
- Inspecting data at each step
- Finding and fixing bugs
Your Task
- 1Copy the exercise below
- 2Paste into your n8n editor (Ctrl+V)
- 3Solve it — use hints if you get stuck
- 4Check the solution when done
The exercise workflow has a bug. It should output:
{
"full_name": "John Smith",
"email": "john.smith@example.com"
}
But something is wrong. Find the bug, fix it, and verify the output is correct.
Hint: The bug is in the second Edit Fields node.
Get the exercise workflow
Create a free account to copy exercises into your n8n editor.