From 029bdf0cd55e96f393614ca566d57e4330ac9135 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 2 Aug 2023 18:38:10 +0200 Subject: 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. --- cli/tools/test/reporters/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cli/tools/test/reporters/mod.rs') diff --git a/cli/tools/test/reporters/mod.rs b/cli/tools/test/reporters/mod.rs index a3270ad3e..a95c729dd 100644 --- a/cli/tools/test/reporters/mod.rs +++ b/cli/tools/test/reporters/mod.rs @@ -2,11 +2,14 @@ use super::*; +mod common; mod compound; +mod dot; mod junit; mod pretty; pub use compound::CompoundTestReporter; +pub use dot::DotTestReporter; pub use junit::JunitTestReporter; pub use pretty::PrettyTestReporter; -- cgit v1.2.3