{% if test_results %}
{% if test_results.errors %}
A test ran at {{ test_results.time }} and there were
{{ test_results.errors.total }} errors in total
{% else %}
A test ran at {{ test_results.time }} and there were no errors
{% endif %}
{% endif %}
{{ content.description }}
{% for test in content.children %}
{{ test.description }}
{% for scenario in test.children %}
{{ scenario.description }}
{% endfor %}
{% endfor %}