about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/editors/code/tests
diff options
context:
space:
mode:
authorLukas Wirth <lukastw97@gmail.com>2024-07-06 16:15:06 +0200
committerLukas Wirth <lukastw97@gmail.com>2024-07-06 16:20:25 +0200
commit0859772dbe093c7f2176fcc641bd254588a5f585 (patch)
tree48d90db2be60a2151226e5e390932b714fda231a /src/tools/rust-analyzer/editors/code/tests
parentfc92ee8f24edd1b6c6116b93b8118dfb1bc400ff (diff)
Add environment to runnable lsp extension
Diffstat (limited to 'src/tools/rust-analyzer/editors/code/tests')
-rw-r--r--src/tools/rust-analyzer/editors/code/tests/unit/runnable_env.test.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/rust-analyzer/editors/code/tests/unit/runnable_env.test.ts b/src/tools/rust-analyzer/editors/code/tests/unit/runnable_env.test.ts
index 21bdaf5384d..10b7f33652d 100644
--- a/src/tools/rust-analyzer/editors/code/tests/unit/runnable_env.test.ts
+++ b/src/tools/rust-analyzer/editors/code/tests/unit/runnable_env.test.ts
@@ -13,6 +13,7 @@ function makeRunnable(label: string): ra.Runnable {
             cwd: ".",
             executableArgs: [],
             cargoExtraArgs: [],
+            environment: {},
         },
     };
 }