{% extends "layout/master.html" %} {% block content %} {% if codeception.ready() %}

{% for type, files in tests %}

{{ type|capitalize }} Tests ({{ files|length }} available)

{% if attribute(environments, type) is defined %} {% if attribute(environments, type)|length > 0 %}
Environments:
{% for env in attribute(environments, type) %} {% endfor %}
{% endif %} {% endif %}
{% for row in files|batch(2, '') %}
{% for file in row %} {% if file %}
READY
{% endif %} {% endfor %}
{% endfor %} {# end: for row in files|batch(2, '') #}
{% endfor %}

Console Results

{% endif %} {% endblock %}