@exodus/xqa 1.15.2 → 1.16.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 (3) hide show
  1. package/README.md +2 -0
  2. package/dist/xqa.cjs +595 -519
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -89,6 +89,7 @@ Exactly one of `--suite` or `--spec` is required.
89
89
  ```bash
90
90
  xqa run --suite smoke # run .xqa/suites/smoke.suite.json
91
91
  xqa run --spec 'specs/**/*.test.md' # run matching spec files
92
+ xqa run --suite smoke --only spec-login # run a single work item by id
92
93
  xqa run --suite smoke --debug # debug logging
93
94
  ```
94
95
 
@@ -96,6 +97,7 @@ Flags:
96
97
 
97
98
  - `--suite <name>` — Name of the suite (`<name>.suite.json`) under `.xqa/suites/`.
98
99
  - `--spec <globs...>` — Glob patterns matching spec files, resolved from the xqa directory.
100
+ - `--only <id>` — Run only the work item with the given id (requires `--suite`). Ids are deterministic: `spec-<name-without-specs-prefix>` for specs, `freestyle-<index>` for freestyle entries. Hooks still run. Output still lands at `output/suite/<suiteId>/<date>/<runId>/findings.json` with the single item in `items[]`.
99
101
  - `--debug` — Log timing and event details to stderr.
100
102
 
101
103
  ### review [findings-path]