From 1586c52b5b5ad511ec0bf896e94de8585f743cf8 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 6 Apr 2023 17:48:07 -0400 Subject: chore: fix flaky tests checking ms when CI is slow (#18559) --- cli/tools/test.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cli/tools') diff --git a/cli/tools/test.rs b/cli/tools/test.rs index 28364050e..fa9798779 100644 --- a/cli/tools/test.rs +++ b/cli/tools/test.rs @@ -650,6 +650,7 @@ impl PrettyTestReporter { failures_by_origin.entry(origin.clone()).or_default(); let _ = uncaught_error.insert(js_error.as_ref()); } + // note: the trailing whitespace is intentional to get a red background println!("\n{}\n", colors::white_bold_on_red(" ERRORS ")); for (origin, (failures, uncaught_error)) in failures_by_origin { for (description, failure) in failures { @@ -678,6 +679,7 @@ impl PrettyTestReporter { failure_titles.push(failure_title); } } + // note: the trailing whitespace is intentional to get a red background println!("{}\n", colors::white_bold_on_red(" FAILURES ")); for failure_title in failure_titles { println!("{failure_title}"); -- cgit v1.2.3