From 93ea46b31d7dc13354fc16308f73163375de6af7 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Tue, 12 Dec 2023 20:53:41 +0900 Subject: fix(coverage): rename --pretty to --detailed (#21543) --- cli/tests/integration/coverage_tests.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cli/tests/integration') diff --git a/cli/tests/integration/coverage_tests.rs b/cli/tests/integration/coverage_tests.rs index 4d927a16d..4c7a51f4e 100644 --- a/cli/tests/integration/coverage_tests.rs +++ b/cli/tests/integration/coverage_tests.rs @@ -117,7 +117,7 @@ fn run_coverage_text(test_name: &str, extension: &str) { .new_command() .args_vec(vec![ "coverage".to_string(), - "--pretty".to_string(), + "--detailed".to_string(), format!("{}/", tempdir), ]) .split_output() @@ -190,7 +190,7 @@ fn multifile_coverage() { .new_command() .args_vec(vec![ "coverage".to_string(), - "--pretty".to_string(), + "--detailed".to_string(), format!("{}/", tempdir), ]) .split_output() @@ -263,7 +263,7 @@ fn no_snaps_included(test_name: &str, extension: &str) { .args_vec(vec![ "coverage".to_string(), "--include=no_snaps_included.ts".to_string(), - "--pretty".to_string(), + "--detailed".to_string(), format!("{}/", tempdir), ]) .split_output() @@ -312,7 +312,7 @@ fn no_tests_included(test_name: &str, extension: &str) { .args_vec(vec![ "coverage".to_string(), format!("--exclude={}", util::std_path().canonicalize()), - "--pretty".to_string(), + "--detailed".to_string(), format!("{}/", tempdir), ]) .split_output() @@ -362,7 +362,7 @@ fn no_npm_cache_coverage() { .new_command() .args_vec(vec![ "coverage".to_string(), - "--pretty".to_string(), + "--detailed".to_string(), format!("{}/", tempdir), ]) .split_output() @@ -411,7 +411,7 @@ fn no_transpiled_lines() { .args_vec(vec![ "coverage".to_string(), "--include=no_transpiled_lines/index.ts".to_string(), - "--pretty".to_string(), + "--detailed".to_string(), format!("{}/", tempdir), ]) .run(); -- cgit v1.2.3