templates.macros.json.output.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.
#macro(includeOutput $outputs, $isPassed)
#if(!$outputs.isEmpty())
#foreach($output in $outputs)
#set($outputId = $counter.next())
#set($index = $foreach.index + 1)
Output $index
#**
* DO NOT format the line below. Whitespace nodes are significant in a pre-block.
*#
#foreach($message in $output.getMessages())$message
#end
#end
#end
#end