fabro/graph.fabro
Fabro e02aef35bf init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-03-24 15:40:13 -04:00

12 lines
358 B
Text

digraph Simple {
graph [goal="Run tests and report results"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
run_tests [label="Run Tests", prompt="Run the test suite and report results"]
report [label="Report", prompt="Summarize the test results"]
start -> run_tests -> report -> exit
}