mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
fix: Add config and capability for test explorer
This commit is contained in:
parent
52d8ae791d
commit
1c6d1b4f2a
7 changed files with 41 additions and 12 deletions
|
@ -266,6 +266,10 @@ export class Config {
|
|||
return this.get<string | undefined>("cargoRunner");
|
||||
}
|
||||
|
||||
get testExplorer() {
|
||||
return this.get<boolean | undefined>("testExplorer");
|
||||
}
|
||||
|
||||
get runnablesExtraEnv() {
|
||||
const item = this.get<any>("runnables.extraEnv") ?? this.get<any>("runnableEnv");
|
||||
if (!item) return item;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue