@exodus/xqa 2.0.0 → 3.0.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.
- package/README.md +4 -0
- package/dist/xqa.cjs +19032 -23345
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -41,6 +41,7 @@ xqa explore -v prompt,screen # verbose output for categories
|
|
|
41
41
|
xqa explore -v # verbose output for all categories
|
|
42
42
|
xqa explore -t 600 # override explorer timeout (seconds)
|
|
43
43
|
xqa explore --debug # log timing and event details to stderr
|
|
44
|
+
xqa explore --udid ABCD1234 # target a specific booted simulator
|
|
44
45
|
```
|
|
45
46
|
|
|
46
47
|
Flags:
|
|
@@ -48,6 +49,7 @@ Flags:
|
|
|
48
49
|
- `-v, --verbose [categories]` — Log categories (prompt, tools, screen, memory). Default: all if flag is present without value.
|
|
49
50
|
- `-t, --timeout <seconds>` — Explorer timeout in seconds (overrides `QA_EXPLORE_TIMEOUT_SECONDS`).
|
|
50
51
|
- `--debug` — Log timing and event details to stderr.
|
|
52
|
+
- `--udid <id>` — Target simulator UDID. Overrides auto-detect of first booted; exits with code 2 if the UDID is not booted.
|
|
51
53
|
|
|
52
54
|
### spec [spec-file]
|
|
53
55
|
|
|
@@ -91,6 +93,7 @@ xqa run --suite smoke # run .xqa/suites/smoke.suite.json
|
|
|
91
93
|
xqa run --spec 'specs/**/*.test.md' # run matching spec files
|
|
92
94
|
xqa run --suite smoke --only spec-login # run a single work item by id
|
|
93
95
|
xqa run --suite smoke --debug # debug logging
|
|
96
|
+
xqa run --suite smoke --udid ABCD1234 # constrain the suite to one booted simulator
|
|
94
97
|
```
|
|
95
98
|
|
|
96
99
|
Flags:
|
|
@@ -99,6 +102,7 @@ Flags:
|
|
|
99
102
|
- `--spec <globs...>` — Glob patterns matching spec files, resolved from the xqa directory.
|
|
100
103
|
- `--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[]`.
|
|
101
104
|
- `--debug` — Log timing and event details to stderr.
|
|
105
|
+
- `--udid <id>` — Target simulator UDID. When supplied, the suite is constrained to that one simulator; exits with code 2 if the UDID is not booted.
|
|
102
106
|
|
|
103
107
|
### review [findings-path]
|
|
104
108
|
|