docs: add detail on dot reporter output (#30939)
docs: detail on how to interpret dot reporter output added. Fixes #30908
This commit is contained in:
parent
6290af3a08
commit
68abd36464
|
|
@ -167,6 +167,16 @@ Running 124 tests using 6 workers
|
||||||
······F·············································
|
······F·············································
|
||||||
```
|
```
|
||||||
|
|
||||||
|
One character is displayed for each test that has run, indicating its status:
|
||||||
|
|
||||||
|
| Character | Description
|
||||||
|
|---|---|
|
||||||
|
| `·` | Passed
|
||||||
|
| `F` | Failed
|
||||||
|
| `×` | Failed or timed out - and will be retried
|
||||||
|
| `±` | Passed on retry (flaky)
|
||||||
|
| `T` | Timed out
|
||||||
|
| `°` | Skipped
|
||||||
|
|
||||||
Dot report supports the following configuration options and environment variables:
|
Dot report supports the following configuration options and environment variables:
|
||||||
|
|
||||||
|
|
@ -175,7 +185,6 @@ Dot report supports the following configuration options and environment variable
|
||||||
| `PLAYWRIGHT_FORCE_TTY` | | Whether to produce output suitable for a live terminal. | `true` when terminal is in TTY mode, `false` otherwise.
|
| `PLAYWRIGHT_FORCE_TTY` | | Whether to produce output suitable for a live terminal. | `true` when terminal is in TTY mode, `false` otherwise.
|
||||||
| `FORCE_COLOR` | | Whether to produce colored output. | `true` when terminal is in TTY mode, `false` otherwise.
|
| `FORCE_COLOR` | | Whether to produce colored output. | `true` when terminal is in TTY mode, `false` otherwise.
|
||||||
|
|
||||||
|
|
||||||
### HTML reporter
|
### HTML reporter
|
||||||
|
|
||||||
HTML reporter produces a self-contained folder that contains report for the test run that can be served as a web page.
|
HTML reporter produces a self-contained folder that contains report for the test run that can be served as a web page.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue