@jsenv/core 33.0.0 → 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 CHANGED
@@ -24615,14 +24615,14 @@ const executeTestPlan = async ({
24615
24615
  gcBetweenExecutions = logMemoryHeapUsage,
24616
24616
  coverageEnabled = process.argv.includes("--coverage"),
24617
24617
  coverageConfig = {
24618
- "**/*": true,
24619
- "**/.*": false,
24620
- "**/.*/": false,
24621
- "**/node_modules/": false,
24622
- "**/tests/": false,
24623
- "**/*.test.html": false,
24624
- "**/*.test.js": false,
24625
- "**/*.test.mjs": false
24618
+ "file:///**/.*": false,
24619
+ "file:///**/.*/": false,
24620
+ "file:///**/node_modules/": false,
24621
+ "./**/src/": true,
24622
+ "./**/tests/": false,
24623
+ "./**/*.test.html": false,
24624
+ "./**/*.test.js": false,
24625
+ "./**/*.test.mjs": false
24626
24626
  },
24627
24627
  coverageIncludeMissing = true,
24628
24628
  coverageAndExecutionAllowed = false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "33.0.0",
3
+ "version": "33.0.2",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -66,14 +66,14 @@ export const executeTestPlan = async ({
66
66
 
67
67
  coverageEnabled = process.argv.includes("--coverage"),
68
68
  coverageConfig = {
69
- "**/*": true,
70
- "**/.*": false,
71
- "**/.*/": false,
72
- "**/node_modules/": false,
73
- "**/tests/": false,
74
- "**/*.test.html": false,
75
- "**/*.test.js": false,
76
- "**/*.test.mjs": false,
69
+ "file:///**/.*": false,
70
+ "file:///**/.*/": false,
71
+ "file:///**/node_modules/": false,
72
+ "./**/src/": true,
73
+ "./**/tests/": false,
74
+ "./**/*.test.html": false,
75
+ "./**/*.test.js": false,
76
+ "./**/*.test.mjs": false,
77
77
  },
78
78
  coverageIncludeMissing = true,
79
79
  coverageAndExecutionAllowed = false,