aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-08-19 13:21:17 +0200
committerGitHub <noreply@github.com>2019-08-19 13:21:17 +0200
commit46cb85691c18f99af70de65d0168e972b1dc57dd (patch)
treeea5f4f74a4d0d21de13095e34ba74e8c3c557da9 /test/functional/ui
parent2963533fe1124139a5a8992ddf8d5b197b21cd51 (diff)
parent47d679c0c24765b7bd6808dc720f5f59f47cc0b8 (diff)
downloadrneovim-46cb85691c18f99af70de65d0168e972b1dc57dd.tar.gz
rneovim-46cb85691c18f99af70de65d0168e972b1dc57dd.tar.bz2
rneovim-46cb85691c18f99af70de65d0168e972b1dc57dd.zip
Merge pull request #10626 from janlazo/test/enable
Windows: enable more tests
Diffstat (limited to 'test/functional/ui')
-rw-r--r--test/functional/ui/output_spec.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua
index 24bf66e2d8..4a0e7ccad0 100644
--- a/test/functional/ui/output_spec.lua
+++ b/test/functional/ui/output_spec.lua
@@ -12,8 +12,6 @@ local command = helpers.command
local nvim_dir = helpers.nvim_dir
describe("shell command :!", function()
- if helpers.pending_win32(pending) then return end
-
local screen
before_each(function()
clear()
@@ -36,6 +34,7 @@ describe("shell command :!", function()
end)
it("displays output without LF/EOF. #4646 #4569 #3772", function()
+ if helpers.pending_win32(pending) then return end
-- NOTE: We use a child nvim (within a :term buffer)
-- to avoid triggering a UI flush.
child_session.feed_data(":!printf foo; sleep 200\n")