mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
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`.
This commit is contained in:
parent
75209e12f1
commit
ff2e66aa38
1 changed files with 3 additions and 3 deletions
|
@ -1624,7 +1624,7 @@ fn test_subcommand<'a>() -> Command<'a> {
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("doc")
|
Arg::new("doc")
|
||||||
.long("doc")
|
.long("doc")
|
||||||
.help("UNSTABLE: type-check code blocks")
|
.help("Type-check code blocks in JSDoc and Markdown")
|
||||||
.takes_value(false),
|
.takes_value(false),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
@ -1659,7 +1659,7 @@ fn test_subcommand<'a>() -> Command<'a> {
|
||||||
Arg::new("shuffle")
|
Arg::new("shuffle")
|
||||||
.long("shuffle")
|
.long("shuffle")
|
||||||
.value_name("NUMBER")
|
.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)
|
.min_values(0)
|
||||||
.max_values(1)
|
.max_values(1)
|
||||||
.require_equals(true)
|
.require_equals(true)
|
||||||
|
@ -1678,7 +1678,7 @@ fn test_subcommand<'a>() -> Command<'a> {
|
||||||
.conflicts_with("inspect")
|
.conflicts_with("inspect")
|
||||||
.conflicts_with("inspect-wait")
|
.conflicts_with("inspect-wait")
|
||||||
.conflicts_with("inspect-brk")
|
.conflicts_with("inspect-brk")
|
||||||
.help("UNSTABLE: Collect coverage profile data into DIR"),
|
.help("Collect coverage profile data into DIR"),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("parallel")
|
Arg::new("parallel")
|
||||||
|
|
Loading…
Reference in a new issue