diff options
author | James McCoy <jamessan@jamessan.com> | 2021-11-30 22:27:31 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-11-30 22:27:34 -0500 |
commit | 4342b81e8d0f253015e3a3fa72f5fc00f9a2f30d (patch) | |
tree | 9d6e06922b021e4df0ee8557ee419bd8a0edb9d9 | |
parent | e65b724451ba5f65dfcaf8f8c16afdd508db7359 (diff) | |
download | rneovim-4342b81e8d0f253015e3a3fa72f5fc00f9a2f30d.tar.gz rneovim-4342b81e8d0f253015e3a3fa72f5fc00f9a2f30d.tar.bz2 rneovim-4342b81e8d0f253015e3a3fa72f5fc00f9a2f30d.zip |
test(api): mark "notify cancels stale events on channel close" fragile
This is already skipped in all CI environments, so it should also be
skipped in environments that don't like fragile tests. Since there's no
convenient way to express these concisely, add the explicit fragile
skip.
-rw-r--r-- | test/functional/api/server_notifications_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/api/server_notifications_spec.lua b/test/functional/api/server_notifications_spec.lua index 6367cc5caa..1c00f001ff 100644 --- a/test/functional/api/server_notifications_spec.lua +++ b/test/functional/api/server_notifications_spec.lua @@ -81,6 +81,8 @@ describe('notify', function() if isCI() then pending('hangs on CI #14083 #15251') return + elseif helpers.skip_fragile(pending) then + return end if helpers.pending_win32(pending) then return end local catchan = eval("jobstart(['cat'], {'rpc': v:true})") |