@jsenv/core 33.0.1 → 33.0.2
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/dist/jsenv.js +4 -1
- package/package.json +1 -1
- package/src/test/execute_test_plan.js +4 -1
package/dist/jsenv.js
CHANGED
|
@@ -24615,7 +24615,10 @@ const executeTestPlan = async ({
|
|
|
24615
24615
|
gcBetweenExecutions = logMemoryHeapUsage,
|
|
24616
24616
|
coverageEnabled = process.argv.includes("--coverage"),
|
|
24617
24617
|
coverageConfig = {
|
|
24618
|
-
"
|
|
24618
|
+
"file:///**/.*": false,
|
|
24619
|
+
"file:///**/.*/": false,
|
|
24620
|
+
"file:///**/node_modules/": false,
|
|
24621
|
+
"./**/src/": true,
|
|
24619
24622
|
"./**/tests/": false,
|
|
24620
24623
|
"./**/*.test.html": false,
|
|
24621
24624
|
"./**/*.test.js": false,
|
package/package.json
CHANGED
|
@@ -66,7 +66,10 @@ export const executeTestPlan = async ({
|
|
|
66
66
|
|
|
67
67
|
coverageEnabled = process.argv.includes("--coverage"),
|
|
68
68
|
coverageConfig = {
|
|
69
|
-
"
|
|
69
|
+
"file:///**/.*": false,
|
|
70
|
+
"file:///**/.*/": false,
|
|
71
|
+
"file:///**/node_modules/": false,
|
|
72
|
+
"./**/src/": true,
|
|
70
73
|
"./**/tests/": false,
|
|
71
74
|
"./**/*.test.html": false,
|
|
72
75
|
"./**/*.test.js": false,
|