diff options
author | James McCoy <jamessan@jamessan.com> | 2021-08-14 21:21:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-14 21:21:50 -0400 |
commit | bcca62a7602807d37cd2344866624dc17ad0debc (patch) | |
tree | b88f897e697dc26446f26f83f7844ba9aee92ef2 | |
parent | 222cd43222c68ba5376b681d2a5fd7b90da138b0 (diff) | |
parent | 84910773140b9a82bc78c577db5b2c7779cc1a36 (diff) | |
download | rneovim-bcca62a7602807d37cd2344866624dc17ad0debc.tar.gz rneovim-bcca62a7602807d37cd2344866624dc17ad0debc.tar.bz2 rneovim-bcca62a7602807d37cd2344866624dc17ad0debc.zip |
Merge pull request #15368 from jamessan/fragility
test(lsp): disable finicky test when TEST_SKIP_FRAGILE is set
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index 863176bfa9..3c4d01ae74 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -266,6 +266,8 @@ describe('LSP', function() if isCI() then pending('hangs the build on CI #14028, re-enable with freeze timeout #14204') return + elseif helpers.skip_fragile(pending) then + return end local expected_handlers = { {NIL, "shutdown", {}, 1, NIL}; |