diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-08-02 18:38:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-02 18:38:10 +0200 |
| commit | 029bdf0cd55e96f393614ca566d57e4330ac9135 (patch) | |
| tree | ccc9f64068c70fcae1fcceba3920b375bcc19ce2 /cli/tests/testdata/test/steps/ignored_steps.dot.out | |
| parent | d9c85e016f054fd3b6c68a54213e7c0ad8c3a8f4 (diff) | |
feat(cli): Add dot test reporter (#19804)
This commit adds a "dot" reporter to "deno test" subcommand,
that can be activated using "--dot" flag.
It provides a concise output using:
- "." for passing test
- "," for ignored test
- "!" for failing test
User output is silenced and not printed to the console.
In non-TTY environments each result is printed on a separate line.
Diffstat (limited to 'cli/tests/testdata/test/steps/ignored_steps.dot.out')
| -rw-r--r-- | cli/tests/testdata/test/steps/ignored_steps.dot.out | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/steps/ignored_steps.dot.out b/cli/tests/testdata/test/steps/ignored_steps.dot.out new file mode 100644 index 000000000..e3d3865d4 --- /dev/null +++ b/cli/tests/testdata/test/steps/ignored_steps.dot.out @@ -0,0 +1,6 @@ +[WILDCARD] +, +. +. + +ok | 1 passed (1 step) | 0 failed | 0 ignored (1 step) [WILDCARD] |
