diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 58fb0cbe49..f769b8aa82 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -1190,7 +1190,6 @@ static DENO_HELP: &str = cstr!( clean Remove the cache directory compile Compile the script into a self contained executable deno compile main.ts | deno compile --target=x86_64-unknown-linux-gnu - completions Output shell completions coverage Print coverage reports doc Generate and show documentation for a module or built-ins deno doc | deno doc --json | deno doc --html mod.ts @@ -1199,11 +1198,9 @@ static DENO_HELP: &str = cstr!( info Show info about cache or info related to source file jupyter Deno kernel for Jupyter notebooks lint Lint source files - lsp Start the language server init Initialize a new project test Run tests deno test | deno test test.ts - types Print runtime TypeScript declarations publish Publish the current working directory's package or workspace upgrade Upgrade deno executable to given version deno upgrade | deno upgrade 1.45.0 | deno upgrade canary diff --git a/tests/integration/flags_tests.rs b/tests/integration/flags_tests.rs index 48340b4635..b64b828714 100644 --- a/tests/integration/flags_tests.rs +++ b/tests/integration/flags_tests.rs @@ -32,9 +32,6 @@ fn help_output() { "Initialize a new project", "Run tests", "Publish the current working directory's package or workspace", - "Output shell completions", - "Print runtime TypeScript declarations", - "Start the language server", #[cfg(feature = "upgrade")] "Upgrade deno executable to given version", ];