@midscene/cli 1.9.6-beta-20260615080106.0 → 1.9.6
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/es/framework/index.mjs +2 -1
- package/dist/es/framework/index.mjs.map +1 -1
- package/dist/es/index.mjs +4 -2
- package/dist/es/index.mjs.map +1 -1
- package/dist/lib/framework/index.js +2 -1
- package/dist/lib/framework/index.js.map +1 -1
- package/dist/lib/index.js +4 -2
- package/dist/lib/index.js.map +1 -1
- package/package.json +8 -8
|
@@ -3082,7 +3082,8 @@ const launchServer = async (dir)=>new Promise((resolve)=>{
|
|
|
3082
3082
|
});
|
|
3083
3083
|
});
|
|
3084
3084
|
function resolveReportFileName(yamlReportFileName, cliTestId, yamlTestId, fileName) {
|
|
3085
|
-
|
|
3085
|
+
if (void 0 !== yamlReportFileName) return yamlReportFileName;
|
|
3086
|
+
const baseName = cliTestId ?? yamlTestId ?? fileName;
|
|
3086
3087
|
return getReportFileName(baseName);
|
|
3087
3088
|
}
|
|
3088
3089
|
function buildAgentOptions(yamlAgent, reportFileName, fileName) {
|