Remove erroneous comment

This commit is contained in:
vsrs 2021-02-27 21:57:58 +03:00
parent 5e88436517
commit f234b80520
2 changed files with 1 additions and 11 deletions

View file

@ -110,16 +110,6 @@ pub(crate) fn runnables(db: &RootDatabase, file_id: FileId) -> Vec<Runnable> {
res 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( pub(crate) fn related_tests(
db: &RootDatabase, db: &RootDatabase,
position: FilePosition, position: FilePosition,

View file

@ -72,7 +72,7 @@ export interface Runnable {
} }
export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables"); export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables");
export interface RelatedTestsParams extends lc.TextDocumentPositionParams { export interface RelatedTestsParams extends lc.TextDocumentPositionParams {
} }
export interface TestInfo { export interface TestInfo {