diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-11-14 22:10:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-14 22:10:51 +0000 |
commit | 4913274a6508a5e5ad6c8babf2e90a4a84bf98ec (patch) | |
tree | 687e2b6846a8288b4bc9c2896a947b68007731f3 /test_util/src | |
parent | ab0c637425c3219c2a5f59c25ae8ea593018568b (diff) |
feat(lsp): upgrade check on init and notification (#21105)
Diffstat (limited to 'test_util/src')
-rw-r--r-- | test_util/src/lsp.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test_util/src/lsp.rs b/test_util/src/lsp.rs index 352f5d365..2fb227709 100644 --- a/test_util/src/lsp.rs +++ b/test_util/src/lsp.rs @@ -529,6 +529,7 @@ impl LspClientBuilder { "DENO_DONT_USE_INTERNAL_LSP_DIAGNOSTIC_SYNC_FLAG", if self.use_diagnostic_sync { "1" } else { "" }, ) + .env("DENO_NO_UPDATE_CHECK", "1") .arg("lsp") .stdin(Stdio::piped()) .stdout(Stdio::piped()); |