diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-09 22:29:34 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-18 21:40:26 -0400 |
commit | a5b915e56c58b64234f3110b0b208e42d6a7229c (patch) | |
tree | 399ee94b6beff73a35b1e30b4acb51a7c5638955 | |
parent | 2963533fe1124139a5a8992ddf8d5b197b21cd51 (diff) | |
download | rneovim-a5b915e56c58b64234f3110b0b208e42d6a7229c.tar.gz rneovim-a5b915e56c58b64234f3110b0b208e42d6a7229c.tar.bz2 rneovim-a5b915e56c58b64234f3110b0b208e42d6a7229c.zip |
test: win: enable output_spec test
-rw-r--r-- | test/functional/ui/output_spec.lua | 3 |
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") |