aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/istanbul/lib/report/templates/head.txt
blob: cb355ff9910e0956472255e9e3a23667e35977fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en">
<head>
    <title>Code coverage report for {{entity}}</title>
    <meta charset="utf-8">
{{#if prettify}}
    <link rel="stylesheet" href="{{prettify.css}}">
{{/if}}
    <link rel="stylesheet" href="{{base.css}}">
    <style type='text/css'>
        div.coverage-summary .sorter {
            background-image: url({{sorter.image}});
        }
    </style>
</head>
<body>
<div class="header {{reportClass}}">
    <h1>Code coverage report for <span class="entity">{{entity}}</span></h1>
    <h2>
        {{#with metrics.statements}}
        Statements: <span class="metric">{{pct}}% <small>({{covered}} / {{total}})</small></span> &nbsp;&nbsp;&nbsp;&nbsp;
        {{/with}}
        {{#with metrics.branches}}
        Branches: <span class="metric">{{pct}}% <small>({{covered}} / {{total}})</small></span> &nbsp;&nbsp;&nbsp;&nbsp;
        {{/with}}
        {{#with metrics.functions}}
        Functions: <span class="metric">{{pct}}% <small>({{covered}} / {{total}})</small></span> &nbsp;&nbsp;&nbsp;&nbsp;
        {{/with}}
        {{#with metrics.lines}}
        Lines: <span class="metric">{{pct}}% <small>({{covered}} / {{total}})</small></span> &nbsp;&nbsp;&nbsp;&nbsp;
        {{/with}}
        Ignored: <span class="metric">{{#show_ignores metrics}}{{/show_ignores}}</span> &nbsp;&nbsp;&nbsp;&nbsp;
    </h2>
    {{{pathHtml}}}
</div>
<div class="body">