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/cli.cjs
CHANGED
|
@@ -60849,12 +60849,14 @@ var program = async () => {
|
|
|
60849
60849
|
const msg = shouldRunJest ? `Jest selected (${sharePct}% of discovered tests; reason: ${forcedByNamePattern ? "name_pattern" : jestDecision.reason})` : `Skipping Jest (${sharePct}% of discovered tests; reason: ${jestDecision.reason})`;
|
|
60850
60850
|
console.info(`Discovery \u2192 jest: ${jestCount}. ${msg}`);
|
|
60851
60851
|
if (!shouldRunJest) {
|
|
60852
|
-
console.
|
|
60852
|
+
console.info(
|
|
60853
|
+
"No matching tests were discovered for either Vitest or Jest. Treating as success."
|
|
60854
|
+
);
|
|
60853
60855
|
console.info(`Jest args: ${[...jestDiscoveryArgs, "--listTests"].join(" ")}`);
|
|
60854
60856
|
console.info(
|
|
60855
60857
|
"Tip: check your -t/--testNamePattern and file path; Jest lists files selected by your patterns."
|
|
60856
60858
|
);
|
|
60857
|
-
process.exit(
|
|
60859
|
+
process.exit(0);
|
|
60858
60860
|
return;
|
|
60859
60861
|
}
|
|
60860
60862
|
console.info(`Run plan \u2192 Jest maybe=${shouldRunJest} (projects=${projectConfigs.length})`);
|