{% extends '../layout.twig.html' %} {% block title %}Pal Test Results{% endblock %} {% block body %} {% if (test.hasErrors) %}class="red"{% else %}class="green"{% endif %} {% endblock %} {% block content %}

Statistics

Summary

{% for scenario in test.scenarios %} {% endfor %}
Name Time Status
{{ scenario.name }} {{ scenario.time }} {{ scenario.status }}
{% for scenario in test.scenarios %}

{{ scenario.name }}

{% for group in scenario.groups %} {% if (group.shown) %}

{{ group.title }}

{{ group.content }}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %}