You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Bug fixes 2023-10-26 (#168)
* Fixed issue with agent instead of controller acceptance
* Fixed the errorfile validator since it can be an object
* Fixed the acceptance tests if run after the agent tests
* Fixed the start scripts to match the other controller/agent scripts
* Cleaned up the static environment vars
* Added new npm run acceptance:all
- Acceptance:all will start both the agent and controller, and run the acceptance tests for both. You must manually Ctrl -C when finished
* Split the skipBody try parameter into separate request/response skip (#169)
* Split the skipBody try parameter into separate request/response skip
- -k/--skip-response-body will only skip the response body
- -K/--skip-request-body will only skip the request body
- '-k -K' will skip BOTH request and response body
* Fixed cargo fmt
Copy file name to clipboardexpand all lines: guide/src/cli.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -14,11 +14,8 @@ Commands:
14
14
help Print this message or the help of the given subcommand(s)
15
15
16
16
Options:
17
-
-h, --help Prints help information
18
-
-V, --version Prints version information
19
-
-l, --loggers Enable loggers defined in the config file
20
-
-d, --results-directory Directory to store logs (if enabled with --loggers)
21
-
-k, --skipBody Skips request and reponse body from output (try command)
17
+
-h, --help Prints help information
18
+
-V, --version Prints version information
22
19
```
23
20
24
21
As signified in the above help output, there are two subcommands `run` and `try`.
@@ -72,7 +69,8 @@ Options:
72
69
endpoint matching the filter is included in the test
73
70
-l, --loggers Enable loggers defined in the config file
74
71
-d, --results-directory <DIRECTORY> Directory to store logs (if enabled with --loggers)
75
-
-k, --skipBody Skips request and reponse body from output (try command)
72
+
-k, --skip-response-body Skips reponse body from output (try command)
73
+
-K, --skip-request-body Skips request body from output (try command)
76
74
-h, --help Prints help information
77
75
```
78
76
@@ -84,7 +82,9 @@ The `-l`, `--loggers` flag specifies that any loggers defined in the config file
84
82
85
83
The `-d`, `--results-directory` parameter will store any log files (if the `--loggers` flag is used) in the specified directory. If the directory does not exist it is created.
86
84
87
-
The `-k`, `--skipBody` parameter ensures that during a Try run, the request and response bodies aren't displayed. This can be particularly useful for debugging requests or responses when the body is not crucial for the debugging process.
85
+
The `-k`, `--skip-response-body` parameter ensures that during a Try run, the response bodies aren't displayed. This can be particularly useful for debugging responses when the body is very long and not crucial for the debugging process.
86
+
87
+
The `-K`, `--skip-request-body` parameter ensures that during a Try run, the request bodies aren't displayed. This can be particularly useful for debugging requests when the body is very long and not crucial for the debugging process.
88
88
<br/><br/>
89
89
90
90
In both the `run` and `try` subcommands a [config file](./config.md) is required.
0 commit comments