@midscene/cli 1.9.6-beta-20260615083255.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.
@@ -3376,7 +3376,8 @@ defineYamlBatchTest(test, testOptions);
3376
3376
  });
3377
3377
  });
3378
3378
  function resolveReportFileName(yamlReportFileName, cliTestId, yamlTestId, fileName) {
3379
- const baseName = yamlReportFileName ?? cliTestId ?? yamlTestId ?? fileName;
3379
+ if (void 0 !== yamlReportFileName) return yamlReportFileName;
3380
+ const baseName = cliTestId ?? yamlTestId ?? fileName;
3380
3381
  return (0, agent_namespaceObject.getReportFileName)(baseName);
3381
3382
  }
3382
3383
  function buildAgentOptions(yamlAgent, reportFileName, fileName) {