Test a Workflow

Test your workflow with a browser-based call simulator before publishing.

Starting a Test Call

  1. Open your workflow in the editor
  2. Click the Test button in the top-right corner
  3. Allow microphone access when prompted
  4. Speak to simulate a caller — the workflow executes each node in real-time
The simulator shows you which node is currently active, the path taken through the graph, and any data flowing between nodes.

What You Can Test

  • Speech recognition — does the transcriber correctly interpret different accents and languages?
  • Node routing — does the Logic node branch correctly based on input?
  • API calls — does the Function node return the expected response?
  • Subagent handoffs — does the transfer message play before routing?
  • Error paths — what happens when an API call fails?

Viewing Results

After the test call ends:
  1. The call appears in Sessions with type test
  2. Open the session to see the transcript, timing, and cost
  3. Check the Call Logs for detailed event tracking

Testing Tips

Say unexpected things to verify your conditions handle them (e.g., silence, noise, unrecognized input).
Test each path through the workflow — success, failure, and default branches.
If using Function nodes with credentials, confirm the credential is active and has the right permissions.
Say nothing for 10+ seconds to verify silence timeout behavior.

Troubleshooting