fix(ci): fix tests besides pane;

This commit is contained in:
Barrett Ruth 2025-09-18 23:42:27 -04:00
parent 9dd51374fe
commit d3414f3b7b
4 changed files with 19 additions and 10 deletions

View file

@ -15,8 +15,15 @@ describe('cp.health', function()
isdirectory = function()
return 1
end,
fnamemodify = function()
return '/test/path'
end,
})
vim.system = function()
return { wait = function() return { code = 0, stdout = 'test version\n' } end }
end
health = require('cp.health')
end)