neovim/test/functional/ex_cmds/quit_spec.lua
Björn Linse e8a8342132 test: fix command_count_spec
The test hit wait_return if x or .x.swp exists in the project root directory.
2016-06-23 16:54:19 +02:00

15 lines
316 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 wont result in memory
-- errors
end)
end)