From 9d57a4aaeb18461bbeeea30fc8ab8804357185c1 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Sat, 10 Jul 2021 07:29:18 +0800 Subject: feat(cli/tools/test_runner): add terse reporter (#11156) This commit adds "--terse" flag to "deno test" that makes testing reporter output one character per test case instead of one line per case. This is an unstable feature. --- cli/main.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cli/main.rs') diff --git a/cli/main.rs b/cli/main.rs index 93bae0220..df6629391 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -988,6 +988,7 @@ async fn test_command( doc: bool, fail_fast: bool, quiet: bool, + terse: bool, allow_none: bool, filter: Option, shuffle: Option, @@ -1205,6 +1206,7 @@ async fn test_command( no_run, fail_fast, quiet, + terse, true, filter.clone(), shuffle, @@ -1243,6 +1245,7 @@ async fn test_command( no_run, fail_fast, quiet, + terse, allow_none, filter, shuffle, @@ -1350,6 +1353,7 @@ fn get_subcommand( doc, fail_fast, quiet, + terse, include, allow_none, filter, @@ -1362,6 +1366,7 @@ fn get_subcommand( doc, fail_fast, quiet, + terse, allow_none, filter, shuffle, -- cgit v1.2.3