aboutsummaryrefslogtreecommitdiff
path: root/test/functional/plugin/health_spec.lua
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-05-22 20:40:20 +0200
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-05-22 21:34:49 +0200
commit01b4da65c229f05ccb26c55db4e0d30ed9bac10b (patch)
tree19b4f2b4c0fc84cba27270239bf9dc03e35c3c87 /test/functional/plugin/health_spec.lua
parente8f7025de1d8b7c8bbe747736e4c46dcd6e73133 (diff)
downloadrneovim-01b4da65c229f05ccb26c55db4e0d30ed9bac10b.tar.gz
rneovim-01b4da65c229f05ccb26c55db4e0d30ed9bac10b.tar.bz2
rneovim-01b4da65c229f05ccb26c55db4e0d30ed9bac10b.zip
fix: merge all provider healthchecks into a single health.lua
This will help manage the overly granular checkhealth completion to go from ``` vim.health vim.lsp vim.provider.clipboard vim.provider.node vim.provider.perl vim.provider.python vim.provider.ruby vim.treesitter ``` to ``` vim.health vim.lsp vim.provider vim.treesitter ```
Diffstat (limited to 'test/functional/plugin/health_spec.lua')
-rw-r--r--test/functional/plugin/health_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/plugin/health_spec.lua b/test/functional/plugin/health_spec.lua
index 327b5759c7..7aa5c99a60 100644
--- a/test/functional/plugin/health_spec.lua
+++ b/test/functional/plugin/health_spec.lua
@@ -43,7 +43,7 @@ describe(':checkhealth', function()
it('completions can be listed via getcompletion()', function()
clear()
eq('vim.health', getcompletion('vim', 'checkhealth')[1])
- eq('vim.provider.clipboard', getcompletion('vim.prov', 'checkhealth')[1])
+ eq('vim.provider', getcompletion('vim.prov', 'checkhealth')[1])
eq('vim.lsp', getcompletion('vim.ls', 'checkhealth')[1])
end)