commit 6e0082b356821825faef643b96f4d21684ce2f6c
parent b2d984558bfa66439c784eed66b35868c771e085
Author: Lewis Russell <lewis6991@gmail.com>
Date: Thu, 22 Dec 2022 14:19:35 +0000
fix(ci): skip test on windows (#21502)
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/test/functional/lua/fs_spec.lua b/test/functional/lua/fs_spec.lua
@@ -143,6 +143,9 @@ describe('vim.fs', function()
end)
it('works with opts.depth and opts.skip', function()
+ if is_os('win') then
+ pending()
+ end
helpers.funcs.system 'mkdir -p testd/a/b/c'
helpers.funcs.system('touch '..table.concat({
'testd/a1',