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