aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ide/src/runnables.rs10
-rw-r--r--editors/code/src/lsp_ext.ts2
2 files changed, 1 insertions, 11 deletions
diff --git a/crates/ide/src/runnables.rs b/crates/ide/src/runnables.rs
index ce3a2e7ba..7c92b7625 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<Runnable> {
110 res 110 res
111} 111}
112 112
113// Feature: Run Test
114//
115// Shows a popup suggesting to run a test in which the item **at the current cursor
116// location** is used (if any).
117//
118// |===
119// | Editor | Action Name
120//
121// | VS Code | **Rust Analyzer: Run Test**
122// |===
123pub(crate) fn related_tests( 113pub(crate) fn related_tests(
124 db: &RootDatabase, 114 db: &RootDatabase,
125 position: FilePosition, 115 position: FilePosition,
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts
index 11d4d5f00..f0e4be279 100644
--- a/editors/code/src/lsp_ext.ts
+++ b/editors/code/src/lsp_ext.ts
@@ -72,7 +72,7 @@ export interface Runnable {
72} 72}
73export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables"); 73export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables");
74 74
75export interface RelatedTestsParams extends lc.TextDocumentPositionParams { 75export interface RelatedTestsParams extends lc.TextDocumentPositionParams {
76} 76}
77 77
78export interface TestInfo { 78export interface TestInfo {