@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.
@@ -3082,7 +3082,8 @@ const launchServer = async (dir)=>new Promise((resolve)=>{
3082
3082
  });
3083
3083
  });
3084
3084
  function resolveReportFileName(yamlReportFileName, cliTestId, yamlTestId, fileName) {
3085
- const baseName = yamlReportFileName ?? cliTestId ?? yamlTestId ?? fileName;
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) {