@coldtea/qa 0.1.1 → 0.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/README.md +4 -1
- package/dist/main.js +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,8 @@ start runs and follow them to a verdict, upload mobile builds, merge
|
|
|
5
5
|
projects. Every command talks to the public `/v1` API and nothing else.
|
|
6
6
|
|
|
7
7
|
The package installs two names for the same binary: `coldtea-qa`, and
|
|
8
|
-
`cqa` for short — fewer tokens for the agents that call it most.
|
|
8
|
+
`cqa` for short — fewer tokens for the agents that call it most. Every
|
|
9
|
+
example below works with either spelling.
|
|
9
10
|
|
|
10
11
|
## Install
|
|
11
12
|
|
|
@@ -197,6 +198,8 @@ coldtea-qa run test mqt_… --wait --timeout 10m
|
|
|
197
198
|
coldtea-qa run group mqg_… --wait
|
|
198
199
|
coldtea-qa runs list --project prj_… --status completed --outcome failed --since 2026-08-01
|
|
199
200
|
|
|
201
|
+
cqa runs list --environment env_… # only runs that opened in one place
|
|
202
|
+
cqa tests list --search "saved card" # search titles and descriptions
|
|
200
203
|
coldtea-qa run test mqt_… --wait --environment env_… # run in one place
|
|
201
204
|
coldtea-qa run test mqt_… --wait --environment none # run signed out
|
|
202
205
|
coldtea-qa run group mqg_… --wait \
|
package/dist/main.js
CHANGED
|
@@ -1211,7 +1211,8 @@ var projectCommands = [
|
|
|
1211
1211
|
var TESTS_HELP = `coldtea-qa tests \u2014 manage QA tests
|
|
1212
1212
|
|
|
1213
1213
|
Usage
|
|
1214
|
-
coldtea-qa tests list [--group <groupId>] [--
|
|
1214
|
+
coldtea-qa tests list [--group <groupId>] [--search <text>] [--limit <n>]
|
|
1215
|
+
[--cursor <c>]
|
|
1215
1216
|
coldtea-qa tests create <description> (--url <url> | --deployment | --mobile <android|ios>)
|
|
1216
1217
|
[--title <t>] [--group <groupId>]
|
|
1217
1218
|
coldtea-qa tests get <testId>
|
|
@@ -1220,6 +1221,8 @@ Usage
|
|
|
1220
1221
|
coldtea-qa tests delete <testId>
|
|
1221
1222
|
|
|
1222
1223
|
Flags
|
|
1224
|
+
--search On list: only tests whose title or description contains
|
|
1225
|
+
this text, case-insensitively.
|
|
1223
1226
|
--group On list: only this group's tests. On create/update: the
|
|
1224
1227
|
group the test belongs to (update --group moves it).
|
|
1225
1228
|
--url create: the page a static_url test opens.
|
|
@@ -2465,6 +2468,9 @@ Filters
|
|
|
2465
2468
|
couldnt_verify, couldnt_run
|
|
2466
2469
|
--since <when> Only runs created at/after this moment \u2014 epoch
|
|
2467
2470
|
milliseconds or an ISO-8601 date/time
|
|
2471
|
+
--environment <id> Only runs that opened in this environment; combines
|
|
2472
|
+
with any scope. Filtered pages can run short \u2014 follow
|
|
2473
|
+
nextCursor, never row counts
|
|
2468
2474
|
|
|
2469
2475
|
Newest first. With no scope, the whole organization's runs.
|
|
2470
2476
|
|
|
@@ -4654,7 +4660,7 @@ var skipsList = {
|
|
|
4654
4660
|
var appCommands = [appsList, skipsList];
|
|
4655
4661
|
|
|
4656
4662
|
// src/main.ts
|
|
4657
|
-
var CLI_VERSION = "0.1.
|
|
4663
|
+
var CLI_VERSION = "0.1.2";
|
|
4658
4664
|
var WHOAMI_HELP = `coldtea-qa whoami \u2014 show the organization and key
|
|
4659
4665
|
|
|
4660
4666
|
Usage
|