fix(ci): keep mocks for stubs, but ignore unused param

This commit is contained in:
Barrett Ruth 2025-09-21 11:42:53 -04:00
parent c1529c5d91
commit be143d408b
4 changed files with 16 additions and 16 deletions

View file

@ -6,7 +6,7 @@ describe('cp.fzf_lua', function()
package.preload['fzf-lua'] = function()
return {
fzf_exec = function() end,
fzf_exec = function(_, _) end,
}
end
end)