aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-03-29 06:26:01 +0800
committerGitHub <noreply@github.com>2024-03-29 06:26:01 +0800
commit4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba (patch)
treeacffd2d2f7b86ddb00a4e6269992f8eba44fa1d0 /test/functional/lua
parent00b7428b3bf5c30ccfa8322f7b8452a764a0abd0 (diff)
downloadrneovim-4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba.tar.gz
rneovim-4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba.tar.bz2
rneovim-4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba.zip
test: skip another flaky test on macOS (#28087)
Diffstat (limited to 'test/functional/lua')
-rw-r--r--test/functional/lua/watch_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/watch_spec.lua b/test/functional/lua/watch_spec.lua
index 8b6efc3fe4..0da4b3164d 100644
--- a/test/functional/lua/watch_spec.lua
+++ b/test/functional/lua/watch_spec.lua
@@ -22,12 +22,12 @@ describe('vim._watch', function()
local function run(watchfunc)
it('detects file changes (watchfunc=' .. watchfunc .. '())', function()
if watchfunc == 'fswatch' then
+ skip(is_os('win'), 'not supported on windows')
skip(is_os('mac'), 'flaky test on mac')
skip(
not is_ci() and helpers.fn.executable('fswatch') == 0,
'fswatch not installed and not on CI'
)
- skip(is_os('win'), 'not supported on windows')
end
if watchfunc == 'watch' then