diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-05-14 14:29:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-14 14:29:18 +0200 |
commit | ecd6d679a020ff97156de2fd3c443a77a671ac3d (patch) | |
tree | 4729ac264978d3b8b4055c676ec355654f91e7d1 /test/functional/terminal/buffer_spec.lua | |
parent | 0124b0249050fdfb9f6d2eb668fd411b63d0664c (diff) | |
download | rneovim-ecd6d679a020ff97156de2fd3c443a77a671ac3d.tar.gz rneovim-ecd6d679a020ff97156de2fd3c443a77a671ac3d.tar.bz2 rneovim-ecd6d679a020ff97156de2fd3c443a77a671ac3d.zip |
test: skip flaky test on Windows
Diffstat (limited to 'test/functional/terminal/buffer_spec.lua')
-rw-r--r-- | test/functional/terminal/buffer_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/terminal/buffer_spec.lua b/test/functional/terminal/buffer_spec.lua index b983ea89d5..fa587e9364 100644 --- a/test/functional/terminal/buffer_spec.lua +++ b/test/functional/terminal/buffer_spec.lua @@ -281,6 +281,7 @@ describe(':terminal buffer', function() end) it('requires bang (!) to close a running job #15402', function() + skip(is_os('win'), "Test freezes the CI and makes it time out") eq('Vim(wqall):E948: Job still running', exc_exec('wqall')) for _, cmd in ipairs({ 'bdelete', '%bdelete', 'bwipeout', 'bunload' }) do matches('^Vim%('..cmd:gsub('%%', '')..'%):E89: term://.*tty%-test.* will be killed %(add %! to override%)$', |