{{ suite.name }}
{% if suite.doc %}📝 Docs: {{ suite.doc }}
{% endif %} {% if suite.source %}🔗 Source: {{ suite.source }}
{% endif %}📊 Number of Tests: {{ suite.num_tests }}
{% for test in suite.tests %}
{% if test.doc %}
📝 Docs:
{{ test.doc }}
🔗 Source: {{ test.source }}
{% endif %} {% if test.tags %}🏷 Tags: {{ test.tags | join(', ') }}
{% endif %} {% if test.keywords %}🔑 Keywords:
- {{ test.keywords | join('
- ') }}