diff options
author | notomo <notomo.motono@gmail.com> | 2021-08-27 20:54:01 +0900 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-16 14:46:52 +0100 |
commit | 51d6b26729f4a7b25b3b3dbc1496884b18a02ef4 (patch) | |
tree | 1122a85a2753d6b94a3b0c3b905ea15650c0b60b | |
parent | f7002337c02a3a6b73b7d1409186c864b129413d (diff) | |
download | rneovim-51d6b26729f4a7b25b3b3dbc1496884b18a02ef4.tar.gz rneovim-51d6b26729f4a7b25b3b3dbc1496884b18a02ef4.tar.bz2 rneovim-51d6b26729f4a7b25b3b3dbc1496884b18a02ef4.zip |
backport: tests(lua/on_yank): assert conditions that fail correctly #15495
The test added in 274a3504a790a799b28ee89c75e29fb4dbdff41f
does not fail if the code changes are reverted.
-rw-r--r-- | test/functional/lua/highlight_spec.lua | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/test/functional/lua/highlight_spec.lua b/test/functional/lua/highlight_spec.lua index 853b2991e8..50eecb5d09 100644 --- a/test/functional/lua/highlight_spec.lua +++ b/test/functional/lua/highlight_spec.lua @@ -1,6 +1,7 @@ local helpers = require('test.functional.helpers')(after_each) -local funcs = helpers.funcs local exec_lua = helpers.exec_lua +local eq = helpers.eq +local eval = helpers.eval local command = helpers.command 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() command('new') - local bufnr = funcs.bufnr("%") exec_lua[[ vim.highlight.on_yank({timeout = 10, on_macro = true, event = {operator = "y", regtype = "v"}}) vim.cmd('bwipeout!') ]] - exec_lua[[vim.wait(10)]] - local pattern = [[vim/highlight.lua:%d+: Invalid buffer id: ]] .. bufnr - local exists = pcall(helpers.assert_log, pattern) - assert.is_false(exists, string.format("%q should not be in log", pattern)) + helpers.sleep(10) + helpers.feed('<cr>') -- avoid hang if error message exists + eq('', eval('v:errmsg')) end) end) |