summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeert-Jan Zwiers <geertjanzwiers@protonmail.com>2023-02-16 00:50:30 +0100
committerGitHub <noreply@github.com>2023-02-16 00:50:30 +0100
commitff2e66aa3883239ea5906bfecb622e0d5d6f4c8a (patch)
tree51775e8db95fc00a826d1b66f79189f07e77f3bd
parent75209e12f19ca5d4a2a7c9008fba63a487ad8e6a (diff)
chore(cli/test): stabilize coverage, doc, shuffle flags (#17661)
This PR removes the `UNSTABLE` mentions from the CLI docs for `deno test --coverage/doc/shuffle`.
-rw-r--r--cli/args/flags.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs
index 21a940dc5..5d1affb09 100644
--- a/cli/args/flags.rs
+++ b/cli/args/flags.rs
@@ -1624,7 +1624,7 @@ fn test_subcommand<'a>() -> Command<'a> {
.arg(
Arg::new("doc")
.long("doc")
- .help("UNSTABLE: type-check code blocks")
+ .help("Type-check code blocks in JSDoc and Markdown")
.takes_value(false),
)
.arg(
@@ -1659,7 +1659,7 @@ fn test_subcommand<'a>() -> Command<'a> {
Arg::new("shuffle")
.long("shuffle")
.value_name("NUMBER")
- .help("(UNSTABLE): Shuffle the order in which the tests are run")
+ .help("Shuffle the order in which the tests are run")
.min_values(0)
.max_values(1)
.require_equals(true)
@@ -1678,7 +1678,7 @@ fn test_subcommand<'a>() -> Command<'a> {
.conflicts_with("inspect")
.conflicts_with("inspect-wait")
.conflicts_with("inspect-brk")
- .help("UNSTABLE: Collect coverage profile data into DIR"),
+ .help("Collect coverage profile data into DIR"),
)
.arg(
Arg::new("parallel")