diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-22 09:17:49 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-22 09:17:49 -0300 |
commit | 8d51d7e7a75c8807ddc2190e7a9b7f7350f5071a (patch) | |
tree | 35cd7a91e0ee8ffce2546c22f55fa6b9f671bb4e /test/functional/helpers.lua | |
parent | d550eecf7092397d064df26850d4a09d9ab4a481 (diff) | |
parent | 3f0983e4006dee3b533ae1be87a662851b65bb69 (diff) | |
download | rneovim-8d51d7e7a75c8807ddc2190e7a9b7f7350f5071a.tar.gz rneovim-8d51d7e7a75c8807ddc2190e7a9b7f7350f5071a.tar.bz2 rneovim-8d51d7e7a75c8807ddc2190e7a9b7f7350f5071a.zip |
Merge PR #1863 'Fix tests for plain lua'
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index fc699d22a3..c76979e894 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -5,7 +5,8 @@ local AsyncSession = require('nvim.async_session') local Session = require('nvim.session') local nvim_prog = os.getenv('NVIM_PROG') or 'build/bin/nvim' -local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', '--embed'} +local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', + '--cmd', 'set shortmess+=I background=light', '--embed'} local prepend_argv if os.getenv('VALGRIND') then |