Before you turn a workflow on, test it. Test mode runs the whole graph against a sample trigger payload, evaluates every condition, and reports which actions would fire — without sending any emails, queueing any forms, or writing to any tables.
How to test
Open the workflow in the builder.
Click Test (top-right toolbar).
Provide a sample payload. The dialog offers a template payload for the configured trigger — edit values to test edge cases.
Click Run test. Carerealm evaluates the workflow against that payload.
The result shows each condition's
actual_valueandresult, plus an actions_to_execute list with each action'sresolved_config(variables substituted) andvalidationstate.
What test mode does and doesn't do
Does — evaluate conditions, substitute variables, validate action configuration, simulate the full graph.
Does NOT — actually send emails, post messages, queue forms, write to the database. Zero side effects.
Tip — Build the workflow, save it disabled, run a test, fix any "validation: invalid" issues, run another test, then flip to Enabled. Skipping the test is the most common cause of "my workflow ran and nothing happened" surprises.