mirror of
https://github.com/neovim/neovim.git
synced 2024-12-22 04:05:09 -07:00
e8a8342132
The test hit wait_return if x or .x.swp exists in the project root directory.
15 lines
316 B
Lua
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)
|
|
|