{% import './components/badge.html' as badge %} {% if passed != 0 %} {{badge.passed(passed)}} {% endif %} {% if skipped != 0 %} {{ badge.skipped(skipped) }} {% endif %} {% if failed != 0 %} {{ badge.failed(failed) }} {% endif %}

Feature: {{name}}

{% import './components/icon.html' as icons %}

{{icons.folder('1rem', '1rem')}} {{id}}

{% if description != "" %}

Description: {{description}}

{%endif%} {% if tags != "" %}

Tags: {{tags}}

{%endif%}
{% import './components/duration.html' as execution %} {{execution.feature(duration, "Executed in")}} {% if failed != 0 %} {% import './components/failed_scenarios_link.html' as fsl %} {{fsl.failedScenariosLink(failed_scenarios_names)}} {% endif %}
{{scenarios|safe}}