test: skip failing test on freebsd

The watch_file test started failing on bsd after
3ca967387c.
This commit is contained in:
dundargoc 2023-11-10 17:45:40 +01:00 committed by dundargoc
parent e112081daf
commit 4e33ef747c

View File

@ -3,6 +3,7 @@ local eq = helpers.eq
local exec_lua = helpers.exec_lua local exec_lua = helpers.exec_lua
local clear = helpers.clear local clear = helpers.clear
local is_os = helpers.is_os local is_os = helpers.is_os
local skip = helpers.skip
describe('vim._watch', function() describe('vim._watch', function()
before_each(function() before_each(function()
@ -11,6 +12,7 @@ describe('vim._watch', function()
describe('watch', function() describe('watch', function()
it('detects file changes', function() it('detects file changes', function()
skip(is_os('bsd'), "Stopped working on bsd after 3ca967387c49c754561c3b11a574797504d40f38")
local root_dir = vim.uv.fs_mkdtemp(vim.fs.dirname(helpers.tmpname()) .. '/nvim_XXXXXXXXXX') local root_dir = vim.uv.fs_mkdtemp(vim.fs.dirname(helpers.tmpname()) .. '/nvim_XXXXXXXXXX')
local result = exec_lua( local result = exec_lua(