summaryrefslogtreecommitdiff
path: root/chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js')
-rw-r--r--chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js b/chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js
index be4f95085ce..6dc56e64b24 100644
--- a/chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js
+++ b/chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js
@@ -1,7 +1,7 @@
const React = require('react');
function MetricCells({ metrics }) {
- const { classForPercent, pct, covered, total } = metrics;
+ const { classForPercent, pct, covered, missed, total } = metrics;
return (
<>
@@ -15,6 +15,7 @@ function MetricCells({ metrics }) {
</div>
</td>
<td className={'abs ' + classForPercent}>{covered}</td>
+ <td className={'abs ' + classForPercent}>{missed}</td>
<td className={'abs ' + classForPercent}>{total}</td>
</>
);