headlamp 0.1.25 → 0.1.26
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/cli.cjs +4 -2
- package/dist/cli.cjs.map +2 -2
- package/dist/index.js +4 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -62418,12 +62418,14 @@ var program = async () => {
|
|
|
62418
62418
|
const msg = shouldRunJest ? `Jest selected (${sharePct}% of discovered tests; reason: ${forcedByNamePattern ? "name_pattern" : jestDecision.reason})` : `Skipping Jest (${sharePct}% of discovered tests; reason: ${jestDecision.reason})`;
|
|
62419
62419
|
console.info(`Discovery \u2192 jest: ${jestCount}. ${msg}`);
|
|
62420
62420
|
if (!shouldRunJest) {
|
|
62421
|
-
console.
|
|
62421
|
+
console.info(
|
|
62422
|
+
"No matching tests were discovered for either Vitest or Jest. Treating as success."
|
|
62423
|
+
);
|
|
62422
62424
|
console.info(`Jest args: ${[...jestDiscoveryArgs, "--listTests"].join(" ")}`);
|
|
62423
62425
|
console.info(
|
|
62424
62426
|
"Tip: check your -t/--testNamePattern and file path; Jest lists files selected by your patterns."
|
|
62425
62427
|
);
|
|
62426
|
-
process.exit(
|
|
62428
|
+
process.exit(0);
|
|
62427
62429
|
return;
|
|
62428
62430
|
}
|
|
62429
62431
|
console.info(`Run plan \u2192 Jest maybe=${shouldRunJest} (projects=${projectConfigs.length})`);
|