{% extends "base.html" %} {% block title %}SpecterQA Dashboard — All Runs{% endblock %} {% block content %}
{{ total_runs }}
Total Runs
{{ pass_count }}
Passed
{{ fail_count }}
Failed
{{ total_cost | format_cost }}
Total Cost
{% if runs %}
{% for run in runs %} {% endfor %}
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 }}
{% else %}

No runs found

Run specterqa run to generate test evidence, then refresh this page.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}