| Status |
Name |
Specs |
Specs Passed |
Specs Failed |
Specs Pending |
Specs Disabled |
Expectations |
Expectations Passed |
Expectations Failed |
Expectations Failed with Error |
Expectations Failed with Image |
Duration, s |
Expand All
|
<% _.forEach(suites, function(suite){ %>
|
<%- suite.status %>
|
<%- suite.name %>
|
<%- suite.statistic.specs.total %>
|
<%- suite.statistic.specs.passed %>
|
<%- suite.statistic.specs.failed %>
|
<%- suite.statistic.specs.pending %>
|
<%- suite.statistic.specs.disabled %>
|
<%- suite.statistic.expectations.total %>
|
<%- suite.statistic.expectations.passed %>
|
<%- suite.statistic.expectations.failed.total %>
|
<%- suite.statistic.expectations.failed.error %>
|
<%- suite.statistic.expectations.failed.image %>
|
<%- Math.round( suite.statistic.duration/1000 * 10 ) / 10 %>
|
<% _.forEach(suite.specs, function(spec){ %>
|
<%- spec.status %>
|
<%- spec.name %>
|
|
|
|
|
|
<%- spec.statistic.expectations.total %>
|
<%- spec.statistic.expectations.passed %>
|
<%- spec.statistic.expectations.failed.total %>
|
<%- spec.statistic.expectations.failed.error %>
|
<%- spec.statistic.expectations.failed.image %>
|
<%- Math.round( spec.statistic.duration/1000 * 10 ) / 10 %>
|
<% _.forEach(spec.expectations, function(expectation){ %>
|
<%- expectation.message %>
<% if(!expectation.details) {%>
<%- expectation.stack %>
<% } %>
|
<% if(expectation.details && expectation.status==='failed' ) { %>
|
|
<% } else if (expectation.details && expectation.status==='passed' ) { %>
|
<% } %>
<% }); %>
<% }); %>
<% }); %>
| Total |
<%- statistic.specs.total %>
|
<%- statistic.specs.passed %>
|
<%- statistic.specs.failed %>
|
<%- statistic.specs.pending %>
|
<%- statistic.specs.disabled %>
|
<%- statistic.expectations.total %>
|
<%- statistic.expectations.passed %>
|
<%- statistic.expectations.failed.total %>
|
<%- statistic.expectations.failed.error %>
|
<%- statistic.expectations.failed.image %>
|
<%- Math.round( statistic.duration/1000 * 10 ) / 10 %>
|