neovim/test/functional/ex_cmds/quit_spec.lua
2024-01-03 02:09:29 +01:00

14 lines
315 B
Lua

local helpers = require('test.functional.helpers')(after_each)
local clear = helpers.clear
describe(':qa', function()
before_each(function()
clear('--cmd', 'qa')
end)
it('verify #3334', function()
-- just testing if 'qa' passed as a program argument won't result in memory
-- errors
end)
end)