Skip to content

Instantly share code, notes, and snippets.

@vitaLee
Forked from jnicklas/wait_steps.rb
Created July 30, 2014 09:42
Show Gist options
  • Save vitaLee/5b085492627c971007b2 to your computer and use it in GitHub Desktop.
Save vitaLee/5b085492627c971007b2 to your computer and use it in GitHub Desktop.
require "timeout"
module WaitSteps
extend RSpec::Matchers::DSL
matcher :become_true do
match do |block|
begin
Timeout.timeout(Capybara.default_wait_time) do
sleep(0.1) until value = block.call
value
end
rescue TimeoutError
false
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment