diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-02-26 10:11:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 10:11:59 +0800 |
commit | 8b4e26915612caf2d143edca31919cae18a848a1 (patch) | |
tree | b381a37826de6504eb2d96da79464a0ac9f1c17b /test/functional/terminal/buffer_spec.lua | |
parent | 268066e01400f55b0c38716f0d6ee3dece10c43e (diff) | |
download | rneovim-8b4e26915612caf2d143edca31919cae18a848a1.tar.gz rneovim-8b4e26915612caf2d143edca31919cae18a848a1.tar.bz2 rneovim-8b4e26915612caf2d143edca31919cae18a848a1.zip |
test(terminal/buffer_spec): re-skip bang 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 a8dddc0c1c..376b7b849e 100644 --- a/test/functional/terminal/buffer_spec.lua +++ b/test/functional/terminal/buffer_spec.lua @@ -247,6 +247,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( |