{% extends "base.html" %} {% block title %}SpecterQA Dashboard — All Runs{% endblock %} {% block content %}
| Run ID | Product | Journey | Persona | Status | Steps | Cost | Duration | Date |
|---|---|---|---|---|---|---|---|---|
| {{ run._run_id }} | {{ run.product_name | default("—", true) }} | {{ run.scenario_name | default("—", true) }} | {{ run.persona_name | default("—", true) }} | {{ run.passed | status_badge }} | {% set steps = run.step_reports | default([]) %} {% set passed_steps = steps | selectattr("passed") | list | length %} {{ passed_steps }}/{{ steps | length }} | {{ run.cost_usd | default(0) | format_cost }} | {{ run.duration_seconds | default(0) | format_duration }} | {{ run._date_display }} |
No runs found
Run specterqa run to generate test evidence, then refresh this page.