summaryrefslogtreecommitdiff
path: root/tests/integration/watcher_tests.rs
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2024-08-19 00:39:53 +0200
committerGitHub <noreply@github.com>2024-08-18 15:39:53 -0700
commit9bc2dd29ad6ba334fd57a20114e367d3c04763d4 (patch)
tree4de8b2750eb7b56656a1f601339ca3172b168eb1 /tests/integration/watcher_tests.rs
parent1ec12a8c5dc95b88d136b1a8faa380be70ee7ced (diff)
fix: clean up flag help output (#24686)
Permission flags are unified in a clearer and concise output. Unstable flags are hidden by default with exception of the `unstable` flag itself. the remaining unstable flags can be seen with a `--help=unstable`. This also cleans up to show unstable flags only for subcommands that actually need them. Also sorts flags alphabetically, and gorups various flags together in a set of categories. --------- Co-authored-by: crowlkats <crowlkats@toaxl.com>
Diffstat (limited to 'tests/integration/watcher_tests.rs')
-rw-r--r--tests/integration/watcher_tests.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/integration/watcher_tests.rs b/tests/integration/watcher_tests.rs
index 6203a62d9..9685d7ae8 100644
--- a/tests/integration/watcher_tests.rs
+++ b/tests/integration/watcher_tests.rs
@@ -323,7 +323,6 @@ async fn lint_all_files_on_each_change_test() {
.arg("lint")
.arg(t.path())
.arg("--watch")
- .arg("--unstable")
.piped_output()
.spawn()
.unwrap();
@@ -470,7 +469,6 @@ async fn fmt_check_all_files_on_each_change_test() {
.arg(t.path())
.arg("--watch")
.arg("--check")
- .arg("--unstable")
.piped_output()
.spawn()
.unwrap();