templates.generators.overviewFailures.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-reporting Show documentation
Show all versions of cucumber-reporting Show documentation
Provides pretty html reports for Cucumber. It works by generating html from the cucumber json file.
#parse("/templates/headers.vm")
#includeTitle("Failures Overview")
#includeNavigation("failures")
#includeReportInfo()
#includeLead("Failures Overview", "The following summary displays scenarios that failed.")
#includeExpandingButtons()
#if($failures.isEmpty())
You have no failed scenarios in your Cucumber report
#else
#foreach($element in $failures)
#includeElement($element, true)
#end
#end
#includeExpandingButtons()
#include("/templates/footer.vm")