diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2023-12-12 20:53:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 20:53:41 +0900 |
commit | 93ea46b31d7dc13354fc16308f73163375de6af7 (patch) | |
tree | d7ecf7c33e50ce8b45385c83d4a382b5527dd7cf /cli/tests/integration/coverage_tests.rs | |
parent | 7d88e48296f2b88c646335b2868ca9e48b08a3d2 (diff) |
fix(coverage): rename --pretty to --detailed (#21543)
Diffstat (limited to 'cli/tests/integration/coverage_tests.rs')
-rw-r--r-- | cli/tests/integration/coverage_tests.rs | 12 |
1 files changed, 6 insertions, 6 deletions
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(); |