aboutsummaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
authorMathias Fußenegger <mfussenegger@users.noreply.github.com>2023-06-20 18:36:18 +0200
committerGitHub <noreply@github.com>2023-06-20 18:36:18 +0200
commit64f2691a984a5b1e2958d5656a910054982a6f0e (patch)
treeb02c4e0f3f5beefbe50e7193793e254df3cd9d66 /test/functional
parent19eef8156bdd3539f10c9a39494cb64b88d777f5 (diff)
downloadrneovim-64f2691a984a5b1e2958d5656a910054982a6f0e.tar.gz
rneovim-64f2691a984a5b1e2958d5656a910054982a6f0e.tar.bz2
rneovim-64f2691a984a5b1e2958d5656a910054982a6f0e.zip
refactor(lsp): extract common execute command functionality (#24065)
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/fixtures/fake-lsp-server.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/fixtures/fake-lsp-server.lua b/test/functional/fixtures/fake-lsp-server.lua
index ea5e03e0eb..6ee9dac2ca 100644
--- a/test/functional/fixtures/fake-lsp-server.lua
+++ b/test/functional/fixtures/fake-lsp-server.lua
@@ -788,6 +788,9 @@ function tests.code_action_server_side_command()
codeActionProvider = {
resolveProvider = false,
},
+ executeCommandProvider = {
+ commands = {"dummy1"}
+ },
},
}
end,