diff options
Diffstat (limited to 'test/functional/lua')
-rw-r--r-- | test/functional/lua/watch_spec.lua | 5 |
1 files changed, 4 insertions, 1 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( |