diff --git a/crates/ide/src/runnables.rs b/crates/ide/src/runnables.rs index ce3a2e7baa..7c92b7625e 100644 --- a/crates/ide/src/runnables.rs +++ b/crates/ide/src/runnables.rs @@ -110,16 +110,6 @@ pub(crate) fn runnables(db: &RootDatabase, file_id: FileId) -> Vec { res } -// Feature: Run Test -// -// Shows a popup suggesting to run a test in which the item **at the current cursor -// location** is used (if any). -// -// |=== -// | Editor | Action Name -// -// | VS Code | **Rust Analyzer: Run Test** -// |=== pub(crate) fn related_tests( db: &RootDatabase, position: FilePosition, diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts index 11d4d5f00e..f0e4be2794 100644 --- a/editors/code/src/lsp_ext.ts +++ b/editors/code/src/lsp_ext.ts @@ -72,7 +72,7 @@ export interface Runnable { } export const runnables = new lc.RequestType("experimental/runnables"); -export interface RelatedTestsParams extends lc.TextDocumentPositionParams { +export interface RelatedTestsParams extends lc.TextDocumentPositionParams { } export interface TestInfo {