This commit is contained in:
Barrett Ruth 2025-09-30 21:15:15 -04:00
parent 02fe97956f
commit fe90c0b95d
2 changed files with 6 additions and 2 deletions

View file

@ -32,7 +32,9 @@ describe('cp.fzf_lua', function()
describe('basic running', function()
it('can run and open the picker with :CP pick', function()
local cp = require('cp')
assert.has_no_errors(cp.handle_command({ fargs = { 'pick' } }))
assert.has_no_errors(function()
cp.handle_command({ fargs = { 'pick' } })
end)
end)
end)
end)