@hedia/test
Advanced tools
Comparing version 2.0.0-alpha.1 to 2.0.0-alpha.2
{ | ||
"name": "@hedia/test", | ||
"version": "2.0.0-alpha.1", | ||
"version": "2.0.0-alpha.2", | ||
"description": "Custom Test Reporters", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -26,5 +26,7 @@ import { attr, element, render } from "@hedia/html"; | ||
console.log("file", file); | ||
const uncoveredLines = file.lines | ||
.filter((line) => line.count === 0) | ||
.map((line) => line.line); | ||
for (const lineNumber of file.uncoveredLineNumbers) { | ||
for (const lineNumber of uncoveredLines) { | ||
const entry = sourceMap.findOrigin(lineNumber, 1); | ||
@@ -31,0 +33,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6148
157