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
--silence-skips makes it easier to declutter test debugging sessions where only a single spec is being run
--force-newlines ensures a newline character appears after every spec. this may help some CI systems flush their output.
Copy file name to clipboardexpand all lines: docs/index.md
+4
Original file line number
Diff line number
Diff line change
@@ -2697,6 +2697,8 @@ These mechanisms can all be used in concert. They combine with the following ru
2697
2697
- Programmatic filters always apply and result in a non-zero exit code. Any additional CLI filters only apply to the subset of specs selected by the programmatic filters.
2698
2698
- When multiple CLI filters (`--label-filter`, `--focus-file/--skip-file`, `--focus/--skip`) are provided they are all ANDed together. The spec must satisfy the label filter query **and** any location-based filters **and** any description based filters.
2699
2699
2700
+
If you have a large test suite and would like to avoid printing out all the `S` skip delimiters you can run with `--silence-skips` to suppress them.
2701
+
2700
2702
#### Avoiding filtering out all tests
2701
2703
2702
2704
Especially for CI it is useful to fail when all tests were filtered out by accident (either via skip or typo in label filter).
@@ -3717,6 +3719,8 @@ Here's why:
3717
3719
3718
3720
If running on Github actions: `--github-output` will make the output more readable in the Github actions console.
3719
3721
3722
+
If your CI system will only flush if a newline character is seen you may want to set `--force-newlines` to ensure that the output is flushed correctly.
3723
+
3720
3724
### Supporting Custom Suite Configuration
3721
3725
3722
3726
There are contexts where you may want to change some aspects of a suite's behavior based on user-provided configuration. There are two widely adopted means of doing this: environment variables and command-line flags.
0 commit comments