@exodus/xqa 1.7.0 → 1.8.0

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.
Files changed (2) hide show
  1. package/dist/xqa.cjs +1 -3
  2. package/package.json +1 -1
package/dist/xqa.cjs CHANGED
@@ -62963,8 +62963,6 @@ A step MAY be skipped if and only if:
62963
62963
  - The action's direct target (element, modal, screen) is not present, AND
62964
62964
  - The current screen state already satisfies the expected postcondition of this step (i.e. the step's effect has already occurred or was never needed).
62965
62965
 
62966
- When skipping, emit a \`step-skipped\` finding with a one-sentence reason explaining what was absent and what already-satisfied condition justified the skip.
62967
-
62968
62966
  Do NOT skip if:
62969
62967
  - The target is absent but the screen is in an unexpected or intermediate state.
62970
62968
  - You are uncertain whether the postcondition is satisfied.
@@ -75776,7 +75774,7 @@ function resolveXqaDirectory() {
75776
75774
  return result.value;
75777
75775
  }
75778
75776
  var program2 = new Command();
75779
- program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.7.0"}${false ? ` (dev build +${"a108066"})` : ""}`);
75777
+ program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.8.0"}${false ? ` (dev build +${"d16dbac"})` : ""}`);
75780
75778
  program2.command("init").description("Initialize a new xqa project in the current directory").action(() => {
75781
75779
  runInitCommand();
75782
75780
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/xqa",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22"