test: win: enable output_spec test

This commit is contained in:
Jan Edmund Lazo 2019-08-09 22:29:34 -04:00
parent 2963533fe1
commit a5b915e56c
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -12,8 +12,6 @@ local command = helpers.command
local nvim_dir = helpers.nvim_dir local nvim_dir = helpers.nvim_dir
describe("shell command :!", function() describe("shell command :!", function()
if helpers.pending_win32(pending) then return end
local screen local screen
before_each(function() before_each(function()
clear() clear()
@ -36,6 +34,7 @@ describe("shell command :!", function()
end) end)
it("displays output without LF/EOF. #4646 #4569 #3772", function() 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) -- NOTE: We use a child nvim (within a :term buffer)
-- to avoid triggering a UI flush. -- to avoid triggering a UI flush.
child_session.feed_data(":!printf foo; sleep 200\n") child_session.feed_data(":!printf foo; sleep 200\n")