feat(ci): reorganize

This commit is contained in:
Barrett Ruth 2025-09-18 23:33:13 -04:00
parent b00f06377f
commit 6a6b048c6b
5 changed files with 47 additions and 39 deletions

View file

@ -166,7 +166,7 @@ describe('cp integration', function()
}
temp_files['test.run'] = {}
vim.system = function(cmd)
vim.system = function()
return {
wait = function()
return { code = 0, stdout = '3\n', stderr = '' }
@ -462,7 +462,7 @@ describe('cp integration', function()
it('maintains responsiveness during operations', function()
local call_count = 0
vim.system = function(cmd)
vim.system = function()
call_count = call_count + 1
vim.wait(10)
return {