diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-15 18:00:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-15 18:00:00 +0200 |
commit | d72db1ac8f3a2eeea31b2679e7b3ace5b7b21ddd (patch) | |
tree | e139a542172b08eeea9214eabfd7a0d2cfe41013 /test/functional/ui/mouse_spec.lua | |
parent | 8898793adeb3a82fe50da4258c30940e10ebcc9d (diff) | |
download | rneovim-d72db1ac8f3a2eeea31b2679e7b3ace5b7b21ddd.tar.gz rneovim-d72db1ac8f3a2eeea31b2679e7b3ace5b7b21ddd.tar.bz2 rneovim-d72db1ac8f3a2eeea31b2679e7b3ace5b7b21ddd.zip |
test: mouse_spec: remove obnoxious wait times (#7029)
helpers.skip_fragile() already skips the problematic tests
on the ASan build. But the 15s timeout plus 5s 'mousetime'
cause the tests to take 1+ minutes anyways.
Diffstat (limited to 'test/functional/ui/mouse_spec.lua')
-rw-r--r-- | test/functional/ui/mouse_spec.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/functional/ui/mouse_spec.lua b/test/functional/ui/mouse_spec.lua index 35af34015d..3daf92eea0 100644 --- a/test/functional/ui/mouse_spec.lua +++ b/test/functional/ui/mouse_spec.lua @@ -13,9 +13,6 @@ describe('ui/mouse/input', function() clear() meths.set_option('mouse', 'a') meths.set_option('listchars', 'eol:$') - -- set mousetime to very high value to ensure that even in valgrind/travis, - -- nvim will still pick multiple clicks - meths.set_option('mousetime', 5000) screen = Screen.new(25, 5) screen:attach() screen:set_default_attr_ids({ @@ -119,7 +116,6 @@ describe('ui/mouse/input', function() sel = { bold=true }, fill = { reverse=true } }) - screen.timeout = 15000 end) it('in tabline on filler space moves tab to the end', function() |