diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-02-19 11:11:05 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-20 10:22:39 +0100 |
commit | 82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8 (patch) | |
tree | 739fca2a09149899c6f12b10879e0097bfc425a2 /test/functional/terminal/scrollback_spec.lua | |
parent | 2550212b25f313c781ac048757b6969c920cd78f (diff) | |
download | rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.tar.gz rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.tar.bz2 rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.zip |
ci: skip tests that fail on windows
Diffstat (limited to 'test/functional/terminal/scrollback_spec.lua')
-rw-r--r-- | test/functional/terminal/scrollback_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/terminal/scrollback_spec.lua b/test/functional/terminal/scrollback_spec.lua index 11bdc73a47..d1cfc7e91b 100644 --- a/test/functional/terminal/scrollback_spec.lua +++ b/test/functional/terminal/scrollback_spec.lua @@ -345,6 +345,7 @@ end) describe(':terminal prints more lines than the screen height and exits', function() it('will push extra lines to scrollback', function() + if helpers.pending_win32(pending) then return end clear() local screen = Screen.new(30, 7) screen:attach({rgb=false}) @@ -576,6 +577,7 @@ describe("pending scrollback line handling", function() end) it("does not crash after nvim_buf_call #14891", function() + if helpers.pending_win32(pending) then return end exec_lua [[ local a = vim.api local bufnr = a.nvim_create_buf(false, true) |