Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80684 views
1
<!doctype html>
2
<html lang="en">
3
<head>
4
<title>Code coverage report for {{entity}}</title>
5
<meta charset="utf-8">
6
{{#if prettify}}
7
<link rel="stylesheet" href="{{prettify.css}}">
8
{{/if}}
9
<link rel="stylesheet" href="{{base.css}}">
10
<style type='text/css'>
11
div.coverage-summary .sorter {
12
background-image: url({{sorter.image}});
13
}
14
</style>
15
</head>
16
<body>
17
<div class="header {{reportClass}}">
18
<h1>Code coverage report for <span class="entity">{{entity}}</span></h1>
19
<h2>
20
{{#with metrics.statements}}
21
Statements: <span class="metric">{{pct}}% <small>({{covered}} / {{total}})</small></span> &nbsp;&nbsp;&nbsp;&nbsp;
22
{{/with}}
23
{{#with metrics.branches}}
24
Branches: <span class="metric">{{pct}}% <small>({{covered}} / {{total}})</small></span> &nbsp;&nbsp;&nbsp;&nbsp;
25
{{/with}}
26
{{#with metrics.functions}}
27
Functions: <span class="metric">{{pct}}% <small>({{covered}} / {{total}})</small></span> &nbsp;&nbsp;&nbsp;&nbsp;
28
{{/with}}
29
{{#with metrics.lines}}
30
Lines: <span class="metric">{{pct}}% <small>({{covered}} / {{total}})</small></span> &nbsp;&nbsp;&nbsp;&nbsp;
31
{{/with}}
32
Ignored: <span class="metric">{{#show_ignores metrics}}{{/show_ignores}}</span> &nbsp;&nbsp;&nbsp;&nbsp;
33
</h2>
34
{{{pathHtml}}}
35
</div>
36
<div class="body">
37
38