diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-10 17:45:40 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-10 21:10:15 +0100 |
commit | 4e33ef747ca4b26f67c43e73f3105b174e9ef5b6 (patch) | |
tree | c30630a046ff6f6b5df4cbc89d5aee61310484b9 | |
parent | e112081daf4ac192a1e52cf8b576a366b30f50ac (diff) | |
download | rneovim-4e33ef747ca4b26f67c43e73f3105b174e9ef5b6.tar.gz rneovim-4e33ef747ca4b26f67c43e73f3105b174e9ef5b6.tar.bz2 rneovim-4e33ef747ca4b26f67c43e73f3105b174e9ef5b6.zip |
test: skip failing test on freebsd
The watch_file test started failing on bsd after
3ca967387c49c754561c3b11a574797504d40f38.
-rw-r--r-- | test/functional/lua/watch_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/lua/watch_spec.lua b/test/functional/lua/watch_spec.lua index ee31975063..0542522140 100644 --- a/test/functional/lua/watch_spec.lua +++ b/test/functional/lua/watch_spec.lua @@ -3,6 +3,7 @@ local eq = helpers.eq local exec_lua = helpers.exec_lua local clear = helpers.clear local is_os = helpers.is_os +local skip = helpers.skip describe('vim._watch', function() before_each(function() @@ -11,6 +12,7 @@ describe('vim._watch', function() describe('watch', 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 result = exec_lua( |