Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1.03 KB

summary-template.md

File metadata and controls

23 lines (16 loc) · 1.03 KB

<% def stats = utils.aggregateStats( data ) %># Specification run results

Specifications summary

Created on ${new Date()} by ${System.properties['user.name']}

Total Passed Failed Feature failures Feature errors Success rate Total time (ms)
${stats.total} ${stats.passed} ${stats.failed} ${stats.fFails} ${stats.fErrors} ${stats.successRate} ${stats.time}

Specifications

Name Features Failed Errors Skipped Success rate Time
<% data.each { name, map ->
  def s = map.stats

%>| $name | ${s.totalRuns} | ${s.failures} | ${s.errors} | ${s.skipped} | ${s.successRate} | ${s.time} | <% } %>

Generated by Athaydes Spock Reports