Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Latest commit

 

History

History
22 lines (15 loc) · 1.02 KB

summary-template.md

File metadata and controls

22 lines (15 loc) · 1.02 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 ->
%> $name ${map.totalRuns} ${map.failures} ${map.errors} ${map.skipped} ${map.successRate}
<% }
%>

Generated by Athaydes Spock Reports