assuremind 1.1.1 → 1.1.2

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/index.js CHANGED
@@ -588,7 +588,7 @@ async function createRunLogFile(rootDir, runId) {
588
588
  await import_fs_extra2.default.ensureDir(logsDir);
589
589
  const logFilePath = import_path2.default.join(logsDir, `run-${runId}.log`);
590
590
  const stream = import_fs_extra2.default.createWriteStream(logFilePath, { flags: "a", encoding: "utf-8" });
591
- stream.write(`=== AutoMind Test Run: ${runId} ===
591
+ stream.write(`=== Assuremind Test Run: ${runId} ===
592
592
  `);
593
593
  stream.write(`Started: ${(/* @__PURE__ */ new Date()).toISOString()}
594
594
  `);
@@ -7228,7 +7228,7 @@ var init_allure_reporter = __esm({
7228
7228
  await import_fs_extra14.default.ensureDir(this.resultsDir);
7229
7229
  const envProps = [
7230
7230
  `Environment=${this.environment.toUpperCase()}`,
7231
- `Framework=AutoMind`
7231
+ `Framework=Assuremind`
7232
7232
  ].join("\n");
7233
7233
  await import_fs_extra14.default.writeFile(import_path19.default.join(this.resultsDir, "environment.properties"), envProps, "utf-8");
7234
7234
  let logFileName;
@@ -15816,7 +15816,7 @@ async function createHealingPR(rootDir, acceptedCount) {
15816
15816
  printInfo("Committing healed code...");
15817
15817
  const commitMsg = `fix: apply ${acceptedCount} self-healed selector(s)
15818
15818
 
15819
- Auto-generated by AutoMind self-healing engine.`;
15819
+ Auto-generated by Assuremind self-healing engine.`;
15820
15820
  await git.commit(commitMsg);
15821
15821
  printInfo("Pushing branch to remote...");
15822
15822
  await simpleGitRaw.push("origin", branchName, ["--set-upstream"]);
@@ -15833,7 +15833,7 @@ Auto-generated by AutoMind self-healing engine.`;
15833
15833
  title: `fix: self-healed ${acceptedCount} broken selector(s)`,
15834
15834
  body: `## Self-Healing Auto PR
15835
15835
 
15836
- AutoMind detected and fixed **${acceptedCount}** broken test selector(s) during CI execution.
15836
+ Assuremind detected and fixed **${acceptedCount}** broken test selector(s) during CI execution.
15837
15837
 
15838
15838
  ### What changed
15839
15839
  - Healed selectors were automatically updated in test case files
@@ -15843,7 +15843,7 @@ AutoMind detected and fixed **${acceptedCount}** broken test selector(s) during
15843
15843
  Review the changes and merge if the fixes look correct.
15844
15844
 
15845
15845
  ---
15846
- \u{1F916} *Auto-generated by AutoMind*`,
15846
+ \u{1F916} *Auto-generated by Assuremind*`,
15847
15847
  head: branchName,
15848
15848
  base: baseBranch
15849
15849
  })