@mablhq/mabl-cli 1.43.16 → 1.44.5
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 +15 -10
- package/execution/index.js +1 -1
- package/mablApi/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,9 +10,9 @@ mabl helps you create and run reliable end-to-end tests earlier and more often i
|
|
|
10
10
|
## Description
|
|
11
11
|
|
|
12
12
|
mabl CLI gives you everything you need to create, edit and run end-to-end tests
|
|
13
|
-
locally and in the mabl cloud. Install the `mabl-cli` from `npm` to
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
locally and in the mabl cloud. Install the `mabl-cli` from `npm` to create and
|
|
14
|
+
run tests with a few simple commands. Query your workspaces, applications,
|
|
15
|
+
environments, and tests all through the command line.
|
|
16
16
|
|
|
17
17
|
### Supported Features
|
|
18
18
|
|
|
@@ -35,7 +35,7 @@ Complete help documentation available at
|
|
|
35
35
|
|
|
36
36
|
## Installation
|
|
37
37
|
|
|
38
|
-
Note: **Node
|
|
38
|
+
Note: **Node 14+ is required** to run the mabl CLI
|
|
39
39
|
|
|
40
40
|
Stable version:
|
|
41
41
|
|
|
@@ -117,7 +117,10 @@ in the payload consistent with the
|
|
|
117
117
|
mabl deployments create --environment-id <environment-id> --application-id <application-id> --output json
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
-
A deployment event id can be used to rejoin or start watching an ongoing
|
|
120
|
+
A deployment event id can be used to rejoin or start watching an ongoing
|
|
121
|
+
deployment run using the `watch` command. If the deployment is already
|
|
122
|
+
completed, the results will be printed and the program will exit. If the running
|
|
123
|
+
deployment fails, a non-zero exit code will be emitted.
|
|
121
124
|
|
|
122
125
|
```bash
|
|
123
126
|
mabl deployments watch <deployment-id>
|
|
@@ -232,17 +235,19 @@ Use the:
|
|
|
232
235
|
supplied with no argument.
|
|
233
236
|
- `--labels` run tests that match any label.
|
|
234
237
|
- `--exclude-labels` exclude tests that match any label.
|
|
235
|
-
- `--interaction-speed` [normal, slow, slower] controls how fast the cli
|
|
238
|
+
- `--interaction-speed` [normal, slow, slower] controls how fast the cli
|
|
239
|
+
interacts with the page. This overrides any settings set at the environment,
|
|
240
|
+
plan, or test run level.
|
|
236
241
|
|
|
237
|
-
|
|
238
|
-
|
|
242
|
+
**Note: pre v1.0.0 `run` behavior has been moved to `run-legacy`, and will be
|
|
243
|
+
removed in a future release.**
|
|
239
244
|
|
|
240
245
|
#### [DEPRECATED] Alpha run mode
|
|
241
246
|
|
|
242
247
|
The alpha run command behavior, `run-alpha` has been promoted to GA as `run`.
|
|
243
248
|
|
|
244
|
-
**`run-alpha` command is DEPRECATED and will be removed in a future release.
|
|
245
|
-
|
|
249
|
+
**`run-alpha` command is DEPRECATED and will be removed in a future release.
|
|
250
|
+
Please migrate to `run` which has the identical behavior**
|
|
246
251
|
|
|
247
252
|
Example:
|
|
248
253
|
|