diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-08-27 03:59:13 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2021-09-14 07:51:01 -0700 |
commit | f809664f89c7437d2466eae9772c918d22fb77ae (patch) | |
tree | 484385941d6328c1036b84cdfc5ddb68d25fbad4 /test/functional/api/server_notifications_spec.lua | |
parent | d83df7f7b5c13a96c1df8c061a65fc2d3f114032 (diff) | |
download | rneovim-f809664f89c7437d2466eae9772c918d22fb77ae.tar.gz rneovim-f809664f89c7437d2466eae9772c918d22fb77ae.tar.bz2 rneovim-f809664f89c7437d2466eae9772c918d22fb77ae.zip |
ci: skip "cancels stale events on channel close" #15278
- ref #14083 #15251
- also: docs: naming conventions
Diffstat (limited to 'test/functional/api/server_notifications_spec.lua')
-rw-r--r-- | test/functional/api/server_notifications_spec.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/api/server_notifications_spec.lua b/test/functional/api/server_notifications_spec.lua index 9ee2570798..047bbfeb21 100644 --- a/test/functional/api/server_notifications_spec.lua +++ b/test/functional/api/server_notifications_spec.lua @@ -5,6 +5,7 @@ local eq, clear, eval, command, nvim, next_msg = local meths = helpers.meths local exec_lua = helpers.exec_lua local retry = helpers.retry +local isCI = helpers.isCI describe('notify', function() local channel @@ -76,6 +77,10 @@ describe('notify', function() end) it('cancels stale events on channel close', function() + 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})") eq({id=catchan, stream='job', mode='rpc', client = {}}, exec_lua ([[ |