mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 11:28:22 +00:00
backport: tests(lua/on_yank): assert conditions that fail correctly #15495
The test added in 274a3504a7
does not fail if the code changes are reverted.
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
local funcs = helpers.funcs
|
|
||||||
local exec_lua = helpers.exec_lua
|
local exec_lua = helpers.exec_lua
|
||||||
|
local eq = helpers.eq
|
||||||
|
local eval = helpers.eval
|
||||||
local command = helpers.command
|
local command = helpers.command
|
||||||
local clear = helpers.clear
|
local clear = helpers.clear
|
||||||
|
|
||||||
@@ -12,15 +13,13 @@ describe('vim.highlight.on_yank', function()
|
|||||||
|
|
||||||
it('does not show errors even if buffer is wiped before timeout', function()
|
it('does not show errors even if buffer is wiped before timeout', function()
|
||||||
command('new')
|
command('new')
|
||||||
local bufnr = funcs.bufnr("%")
|
|
||||||
exec_lua[[
|
exec_lua[[
|
||||||
vim.highlight.on_yank({timeout = 10, on_macro = true, event = {operator = "y", regtype = "v"}})
|
vim.highlight.on_yank({timeout = 10, on_macro = true, event = {operator = "y", regtype = "v"}})
|
||||||
vim.cmd('bwipeout!')
|
vim.cmd('bwipeout!')
|
||||||
]]
|
]]
|
||||||
exec_lua[[vim.wait(10)]]
|
helpers.sleep(10)
|
||||||
local pattern = [[vim/highlight.lua:%d+: Invalid buffer id: ]] .. bufnr
|
helpers.feed('<cr>') -- avoid hang if error message exists
|
||||||
local exists = pcall(helpers.assert_log, pattern)
|
eq('', eval('v:errmsg'))
|
||||||
assert.is_false(exists, string.format("%q should not be in log", pattern))
|
|
||||||
end)
|
end)
|
||||||
|
|
||||||
end)
|
end)
|
||||||
|
Reference in New Issue
Block a user