diff options
Diffstat (limited to 'cli/tools/test.rs')
-rw-r--r-- | cli/tools/test.rs | 2 |
1 files changed, 2 insertions, 0 deletions
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}"); |