aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-03-13 04:15:24 +0100
committerGitHub <noreply@github.com>2023-03-13 11:15:24 +0800
commitb466e1d289180fad212a93b173034787fd6be9a8 (patch)
treebec6d63237106119b38e9f986990ce21a66cd3cc /test/functional/terminal
parent2daf0b37dbfe54a4510c1033531dbaefd168c387 (diff)
downloadrneovim-b466e1d289180fad212a93b173034787fd6be9a8.tar.gz
rneovim-b466e1d289180fad212a93b173034787fd6be9a8.tar.bz2
rneovim-b466e1d289180fad212a93b173034787fd6be9a8.zip
test: unskip working Windows tests (#22537)
Some tests that were previously not working have started to work again for unspecified reasons, so let's enable them.
Diffstat (limited to 'test/functional/terminal')
-rw-r--r--test/functional/terminal/mouse_spec.lua2
-rw-r--r--test/functional/terminal/scrollback_spec.lua2
2 files changed, 0 insertions, 4 deletions
diff --git a/test/functional/terminal/mouse_spec.lua b/test/functional/terminal/mouse_spec.lua
index 50c8f5e7df..ac76217023 100644
--- a/test/functional/terminal/mouse_spec.lua
+++ b/test/functional/terminal/mouse_spec.lua
@@ -68,7 +68,6 @@ describe(':terminal mouse', function()
end)
it('does not leave terminal mode on left-release', function()
- skip(is_os('win'))
feed('<LeftRelease>')
eq('t', eval('mode(1)'))
end)
@@ -232,7 +231,6 @@ describe(':terminal mouse', function()
end)
describe('with a split window and other buffer', function()
- skip(is_os('win'))
before_each(function()
feed('<c-\\><c-n>:vsp<cr>')
screen:expect([[
diff --git a/test/functional/terminal/scrollback_spec.lua b/test/functional/terminal/scrollback_spec.lua
index a4899c8219..00a35a5c6c 100644
--- a/test/functional/terminal/scrollback_spec.lua
+++ b/test/functional/terminal/scrollback_spec.lua
@@ -140,7 +140,6 @@ describe(':terminal scrollback', function()
describe('and height decreased by 1', function()
- if skip(is_os('win')) then return end
local function will_hide_top_line()
feed([[<C-\><C-N>]])
screen:try_resize(screen._width - 2, screen._height - 1)
@@ -347,7 +346,6 @@ end)
describe(':terminal prints more lines than the screen height and exits', function()
it('will push extra lines to scrollback', function()
- skip(is_os('win'))
clear()
local screen = Screen.new(30, 7)
screen:attach({rgb=false})