diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-02-20 00:13:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-20 00:13:58 +0100 |
commit | e215b6cb854626e728ef5c4045945962364e5b7d (patch) | |
tree | c7bc010ec66d30ea798cf419f1084178e24e2417 /test/functional/ui | |
parent | e177c186e40e96b70ccdb92f90b6184ab58890a1 (diff) | |
parent | 7fa69fb288d9fcf66c2fe504d760cc7a23da7256 (diff) | |
download | rneovim-e215b6cb854626e728ef5c4045945962364e5b7d.tar.gz rneovim-e215b6cb854626e728ef5c4045945962364e5b7d.tar.bz2 rneovim-e215b6cb854626e728ef5c4045945962364e5b7d.zip |
Merge #7412 'win: enable more tests'
Diffstat (limited to 'test/functional/ui')
-rw-r--r-- | test/functional/ui/wildmode_spec.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/ui/wildmode_spec.lua b/test/functional/ui/wildmode_spec.lua index 042969357e..c6ddc78618 100644 --- a/test/functional/ui/wildmode_spec.lua +++ b/test/functional/ui/wildmode_spec.lua @@ -60,8 +60,7 @@ describe("'wildmenu'", function() command('set wildmenu wildmode=full') command('set scrollback=4') if iswin() then - if helpers.pending_win32(pending) then return end - -- feed([[:terminal 1,2,3,4,5 | foreach-object -process {echo $_; sleep 0.1}]]) + feed([[:terminal for /L \%I in (1,1,5000) do @(echo foo & echo foo & echo foo)<cr>]]) else feed([[:terminal for i in $(seq 1 5000); do printf 'foo\nfoo\nfoo\n'; sleep 0.1; done<cr>]]) end |