monocart-reporter 1.6.29 → 1.6.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -126,7 +126,7 @@ Separated metadata file (Already included in the above HTML and compressed, it c
|
|
|
126
126
|
// entryFilter: (entry) => true,
|
|
127
127
|
// unpackSourceMap: true,
|
|
128
128
|
// excludeDistFile: true,
|
|
129
|
-
// sourceFilter: (sourceName) => sourceName.search(
|
|
129
|
+
// sourceFilter: (sourceName) => sourceName.search(/src\/.+/) !== -1,
|
|
130
130
|
// },
|
|
131
131
|
|
|
132
132
|
// trend data handler
|
|
@@ -742,7 +742,7 @@ const report = await attachCoverageReport(coverageList, test.info(), {
|
|
|
742
742
|
| :--------------| :------ | :------ | :---------------------- |
|
|
743
743
|
| Input data format | Istanbul (Object) | V8 (Array) | V8 (Array) |
|
|
744
744
|
| Options | `watermarks: {}` | `watermarks: [50, 80]` | `toIstanbul: true, watermarks: {}` |
|
|
745
|
-
| Output report | [Istanbul HTML report](https://cenfun.github.io/monocart-reporter/coverage-
|
|
745
|
+
| Output report | [Istanbul HTML report](https://cenfun.github.io/monocart-reporter/coverage-6eaa280d68aea439a847/index.html) | [V8 HTML report](https://cenfun.github.io/monocart-reporter/coverage/index.html) | [Istanbul HTML report](https://cenfun.github.io/monocart-reporter/coverage-bbea6fd47b9c551582fe/index.html) |
|
|
746
746
|
| Indicators | Covered Lines, Branches, Statements and Functions, Execution Counts | Covered Bytes, Lines (after formatted) Execution Counts | Covered Lines, Branches, Statements and Functions, Execution Counts |
|
|
747
747
|
| Source code without [instrumentation](https://github.com/istanbuljs/babel-plugin-istanbul) | ❌ | ✅ | ✅ |
|
|
748
748
|
| CSS coverage | ❌ | ✅ | ❌ |
|
|
@@ -763,7 +763,7 @@ module.exports = {
|
|
|
763
763
|
entryFilter: (entry) => true,
|
|
764
764
|
unpackSourceMap: true,
|
|
765
765
|
excludeDistFile: true,
|
|
766
|
-
sourceFilter: (sourceName) => sourceName.search(
|
|
766
|
+
sourceFilter: (sourceName) => sourceName.search(/src\/.+/) !== -1,
|
|
767
767
|
}
|
|
768
768
|
}]
|
|
769
769
|
]
|
package/lib/default/columns.js
CHANGED
package/lib/default/options.js
CHANGED
|
@@ -17,7 +17,7 @@ module.exports = {
|
|
|
17
17
|
// entryFilter: (entry) => true,
|
|
18
18
|
// unpackSourceMap: true,
|
|
19
19
|
// excludeDistFile: true,
|
|
20
|
-
// sourceFilter: (sourceName) => sourceName.search(
|
|
20
|
+
// sourceFilter: (sourceName) => sourceName.search(/src\/.+/) !== -1,
|
|
21
21
|
// },
|
|
22
22
|
|
|
23
23
|
// trend data handler
|