diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-09-09 06:55:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-09 06:55:35 -0700 |
commit | d8339be6915b3640f12a1827cee652b604b1a0d7 (patch) | |
tree | 55bfaa55adfd1bc5f3babf25b63a938d211f4c40 /test/functional/api/server_notifications_spec.lua | |
parent | 4eb1ebbcf703d0b7fe7dcb8d75001878a50fc137 (diff) | |
parent | 9f3679cbfd8633886f1ab43cd761c58da3b8a29b (diff) | |
download | rneovim-d8339be6915b3640f12a1827cee652b604b1a0d7.tar.gz rneovim-d8339be6915b3640f12a1827cee652b604b1a0d7.tar.bz2 rneovim-d8339be6915b3640f12a1827cee652b604b1a0d7.zip |
Merge #15460 feat(lua)!: register_keystroke_callback => on_key
Diffstat (limited to 'test/functional/api/server_notifications_spec.lua')
-rw-r--r-- | test/functional/api/server_notifications_spec.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/api/server_notifications_spec.lua b/test/functional/api/server_notifications_spec.lua index 279ede81f7..6367cc5caa 100644 --- a/test/functional/api/server_notifications_spec.lua +++ b/test/functional/api/server_notifications_spec.lua @@ -78,10 +78,10 @@ describe('notify', function() end) it('cancels stale events on channel close', function() - if isCI() then - pending('Sporadic hangs on CI (c.f., #14083). Skip until it is fixed.') - return - end + if isCI() then + pending('hangs on CI #14083 #15251') + return + end if helpers.pending_win32(pending) then return end local catchan = eval("jobstart(['cat'], {'rpc': v:true})") local catpath = eval('exepath("cat")') |