diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-02-15 07:26:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-15 07:26:55 +0800 |
commit | 05faa8f30ad770d4e4ead41cec601ccced8fb97f (patch) | |
tree | 23680deec8f90b7159c23f19f0a7a042ac1941f7 /test/functional/lua/ui_event_spec.lua | |
parent | 556f8646c01d1751cf39fe4df9c622899dceab9d (diff) | |
download | rneovim-05faa8f30ad770d4e4ead41cec601ccced8fb97f.tar.gz rneovim-05faa8f30ad770d4e4ead41cec601ccced8fb97f.tar.bz2 rneovim-05faa8f30ad770d4e4ead41cec601ccced8fb97f.zip |
test: make expect_unchanged() less confusing (#22255)
Problem:
The sleep before collecting the initial screen state is confusing and
may lead to unexpected success if it comes after a blocking RPC call.
Solution:
Remove that sleep and add an "intermediate" argument.
Diffstat (limited to 'test/functional/lua/ui_event_spec.lua')
-rw-r--r-- | test/functional/lua/ui_event_spec.lua | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/functional/lua/ui_event_spec.lua b/test/functional/lua/ui_event_spec.lua index 6481da900e..de436771f9 100644 --- a/test/functional/lua/ui_event_spec.lua +++ b/test/functional/lua/ui_event_spec.lua @@ -77,13 +77,8 @@ describe('vim.ui_attach', function() } feed '<c-y>' - screen:expect{grid=[[ - foobar^ | - {1:~ }| - {1:~ }| - {1:~ }| - {2:-- INSERT --} | - ]], intermediate=true} + -- There is an intermediate state where the 'showmode' message disappears. + screen:expect_unchanged(true) expect_events { { "popupmenu_hide" }; } |