assuremind 1.1.0 → 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 +6 -6
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/docs/CLI-REFERENCE.md +1 -1
- package/docs/GETTING-STARTED.md +2 -2
- package/package.json +1 -1
- package/templates/ASSUREMIND.md +1 -1
- package/templates/docs/CLI-REFERENCE.md +1 -1
- package/templates/docs/GETTING-STARTED.md +2 -2
- package/templates/env.example +2 -2
- package/templates/env.minimal +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -371,7 +371,7 @@ var init_init = __esm({
|
|
|
371
371
|
{ dest: ".gitignore", template: "gitignore" },
|
|
372
372
|
{ dest: "autotest.config.ts", template: "autotest.config.ts" },
|
|
373
373
|
{ dest: "variables/global.json", template: "global-variables.json" },
|
|
374
|
-
{ dest: "
|
|
374
|
+
{ dest: "ASSUREMIND.md", template: "ASSUREMIND.md" },
|
|
375
375
|
{ dest: "docs/GETTING-STARTED.md", template: "docs/GETTING-STARTED.md" },
|
|
376
376
|
{ dest: "docs/STUDIO.md", template: "docs/STUDIO.md" },
|
|
377
377
|
{ dest: "docs/CLI-REFERENCE.md", template: "docs/CLI-REFERENCE.md" }
|
|
@@ -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(`===
|
|
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=
|
|
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
|
|
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
|
-
|
|
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
|
|
15846
|
+
\u{1F916} *Auto-generated by Assuremind*`,
|
|
15847
15847
|
head: branchName,
|
|
15848
15848
|
base: baseBranch
|
|
15849
15849
|
})
|