diff options
author | James McCoy <jamessan@jamessan.com> | 2016-11-13 18:47:03 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-11-13 18:47:03 -0500 |
commit | 5e1dc26f742f81f0233296eed068b24b1dbcc8f6 (patch) | |
tree | cf564067b01db462cefa4302c5686d7b3f38c24c /test/functional/terminal/window_spec.lua | |
parent | 598f5af58b21747ea9d6dc0a7d846cb85ae52824 (diff) | |
download | rneovim-5e1dc26f742f81f0233296eed068b24b1dbcc8f6.tar.gz rneovim-5e1dc26f742f81f0233296eed068b24b1dbcc8f6.tar.bz2 rneovim-5e1dc26f742f81f0233296eed068b24b1dbcc8f6.zip |
test: window_spec: Remove flaky terminal resize test
Diffstat (limited to 'test/functional/terminal/window_spec.lua')
-rw-r--r-- | test/functional/terminal/window_spec.lua | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/functional/terminal/window_spec.lua b/test/functional/terminal/window_spec.lua index 70c234d897..eb7a67a1a6 100644 --- a/test/functional/terminal/window_spec.lua +++ b/test/functional/terminal/window_spec.lua @@ -2,7 +2,6 @@ local helpers = require('test.functional.helpers')(after_each) local thelpers = require('test.functional.terminal.helpers') local feed, clear = helpers.feed, helpers.clear local wait = helpers.wait -local execute = helpers.execute if helpers.pending_win32(pending) then return end @@ -14,23 +13,6 @@ describe('terminal window', function() screen = thelpers.screen_setup() end) - it('resets its size when entering terminal buffer', function() - feed('<c-\\><c-n>') - execute('set hidden') - execute('edit foo') - execute('doautoall SessionLoadPost') - execute('silent bnext') - screen:expect([[ - tty ready | - {2: } | - | - | - | - ^ | - :silent bnext | - ]]) - end) - describe('with colorcolumn set', function() before_each(function() feed('<c-\\><c-n>') |