aboutsummaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-01-18 00:14:48 -0800
committerGitHub <noreply@github.com>2024-01-18 00:14:48 -0800
commit95cbedaa1798a7c1489b68dd60380a41443ed34b (patch)
tree92dfec6359159c229aa045fe883fdd10e8ed2bb3 /test/functional
parent11e8e14628413e45e46d2d2a7af53d0da0c9dcdd (diff)
downloadrneovim-95cbedaa1798a7c1489b68dd60380a41443ed34b.tar.gz
rneovim-95cbedaa1798a7c1489b68dd60380a41443ed34b.tar.bz2
rneovim-95cbedaa1798a7c1489b68dd60380a41443ed34b.zip
docs: various #25289
Co-authored-by: Jongwook Choi <wookayin@gmail.com> Co-authored-by: Oliver Marriott <hello@omarriott.com> Co-authored-by: Benoit de Chezelles <bew@users.noreply.github.com> Co-authored-by: Jongwook Choi <wookayin@gmail.com>
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/lua/watch_spec.lua5
-rw-r--r--test/functional/plugin/lsp_spec.lua5
2 files changed, 8 insertions, 2 deletions
diff --git a/test/functional/lua/watch_spec.lua b/test/functional/lua/watch_spec.lua
index 106d40fe0e..044d707499 100644
--- a/test/functional/lua/watch_spec.lua
+++ b/test/functional/lua/watch_spec.lua
@@ -99,7 +99,10 @@ describe('vim._watch', function()
describe('poll', function()
it('detects file changes', function()
- skip(is_os('bsd'), 'bsd only reports rename on folders if file inside change')
+ skip(
+ is_os('bsd'),
+ 'kqueue only reports events on watched folder itself, not contained files #26110'
+ )
local root_dir = vim.uv.fs_mkdtemp(vim.fs.dirname(helpers.tmpname()) .. '/nvim_XXXXXXXXXX')
local result = exec_lua(
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua
index 252931eccb..b602143443 100644
--- a/test/functional/plugin/lsp_spec.lua
+++ b/test/functional/plugin/lsp_spec.lua
@@ -4261,7 +4261,10 @@ describe('LSP', function()
describe('vim.lsp._watchfiles', function()
it('sends notifications when files change', function()
- skip(is_os('bsd'), 'bsd only reports rename on folders if file inside change')
+ skip(
+ is_os('bsd'),
+ 'kqueue only reports events on watched folder itself, not contained files #26110'
+ )
local root_dir = tmpname()
os.remove(root_dir)
mkdir(root_dir)