From: Daniel Hahler Date: Sat, 21 Jul 2018 20:22:15 +0000 (+0200) Subject: tests: fix vim.kill: use (#109) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/c5e3545efbb61f0fb141512aefeadf5bfabdc3a1?ds=inline tests: fix vim.kill: use (#109) --- diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 40b5bfe..c6cc517 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -21,7 +21,11 @@ Vimrunner::RSpec.configure do |config| # More friendly killing. # Otherwise profiling information might not be written. def vim.kill - normal(':qall!') + normal(':qall!') + + Timeout.timeout(5) do + sleep 0.1 while server.running? + end end plugin_path = File.expand_path('../..', __FILE__)