{% with stats=json_report.session.statistics %}

Summary

Total tests: {{ stats.total }}
Passed: {{ stats.successful }} Failed: {{ stats.failed }} Skipped: {{ stats.skipped }} Blocked: {{ stats.errored}} Success rate: {% with total = stats.total if stats.total != 0 else 1 %} {{ "{:.0%}".format( stats.successful / total) }} {% endwith %}
{{ include_raw('icons/timer.svg') | replace("lucide ", "size-5 max-w-5 max-h-5 stroke-neutral-400 dark:stroke-neutral-700 ") }} {{ "{:.6f}".format(stats.duration) }} s
{% endwith %}