diff options
Diffstat (limited to 'test/functional/plugin')
-rw-r--r-- | test/functional/plugin/health_spec.lua | 12 | ||||
-rw-r--r-- | test/functional/plugin/lsp/completion_spec.lua | 4 | ||||
-rw-r--r-- | test/functional/plugin/lsp/folding_range_spec.lua | 2 |
3 files changed, 15 insertions, 3 deletions
diff --git a/test/functional/plugin/health_spec.lua b/test/functional/plugin/health_spec.lua index 406b5c3c16..1f754b9685 100644 --- a/test/functional/plugin/health_spec.lua +++ b/test/functional/plugin/health_spec.lua @@ -212,6 +212,18 @@ describe('vim.health', function() n.expect([[ ERROR: No healthchecks found.]]) end) + + it('nested lua/ directory', function() + command('checkhealth lua') + n.expect([[ + + ============================================================================== + test_plug.lua: require("test_plug.lua.health").check() + + nested lua/ directory ~ + - OK everything is ok + ]]) + end) end) end) diff --git a/test/functional/plugin/lsp/completion_spec.lua b/test/functional/plugin/lsp/completion_spec.lua index 94578aa6da..7772a47589 100644 --- a/test/functional/plugin/lsp/completion_spec.lua +++ b/test/functional/plugin/lsp/completion_spec.lua @@ -847,7 +847,7 @@ describe('vim.lsp.completion: protocol', function() exec_lua(function() local win = vim.api.nvim_get_current_win() vim.api.nvim_win_set_cursor(win, pos) - vim.lsp.completion.trigger() + vim.lsp.completion.get() end) retry(nil, nil, function() @@ -1153,7 +1153,7 @@ describe('vim.lsp.completion: protocol', function() end, }) - vim.lsp.completion.trigger() + vim.lsp.completion.get() return params end) diff --git a/test/functional/plugin/lsp/folding_range_spec.lua b/test/functional/plugin/lsp/folding_range_spec.lua index 7e68a598d2..601f00ef8a 100644 --- a/test/functional/plugin/lsp/folding_range_spec.lua +++ b/test/functional/plugin/lsp/folding_range_spec.lua @@ -612,7 +612,7 @@ static int foldLevel(linenr_T lnum) }) end) - it('is defered when the buffer is not up-to-date', function() + it('is deferred when the buffer is not up-to-date', function() exec_lua(function() vim.lsp.foldclose('comment') vim.lsp.util.buf_versions[bufnr] = 0 |