@jsenv/core 33.0.0 → 33.0.1
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 +5 -8
- package/package.json +1 -1
- package/src/test/execute_test_plan.js +5 -8
package/dist/jsenv.js
CHANGED
|
@@ -24615,14 +24615,11 @@ const executeTestPlan = async ({
|
|
|
24615
24615
|
gcBetweenExecutions = logMemoryHeapUsage,
|
|
24616
24616
|
coverageEnabled = process.argv.includes("--coverage"),
|
|
24617
24617
|
coverageConfig = {
|
|
24618
|
-
"
|
|
24619
|
-
"
|
|
24620
|
-
"
|
|
24621
|
-
"
|
|
24622
|
-
"
|
|
24623
|
-
"**/*.test.html": false,
|
|
24624
|
-
"**/*.test.js": false,
|
|
24625
|
-
"**/*.test.mjs": false
|
|
24618
|
+
"./**/src/**": true,
|
|
24619
|
+
"./**/tests/": false,
|
|
24620
|
+
"./**/*.test.html": false,
|
|
24621
|
+
"./**/*.test.js": false,
|
|
24622
|
+
"./**/*.test.mjs": false
|
|
24626
24623
|
},
|
|
24627
24624
|
coverageIncludeMissing = true,
|
|
24628
24625
|
coverageAndExecutionAllowed = false,
|
package/package.json
CHANGED
|
@@ -66,14 +66,11 @@ export const executeTestPlan = async ({
|
|
|
66
66
|
|
|
67
67
|
coverageEnabled = process.argv.includes("--coverage"),
|
|
68
68
|
coverageConfig = {
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"**/*.test.html": false,
|
|
75
|
-
"**/*.test.js": false,
|
|
76
|
-
"**/*.test.mjs": false,
|
|
69
|
+
"./**/src/**": true,
|
|
70
|
+
"./**/tests/": false,
|
|
71
|
+
"./**/*.test.html": false,
|
|
72
|
+
"./**/*.test.js": false,
|
|
73
|
+
"./**/*.test.mjs": false,
|
|
77
74
|
},
|
|
78
75
|
coverageIncludeMissing = true,
|
|
79
76
|
coverageAndExecutionAllowed = false,
|