Project

try-for

0.0
No commit activity in last 3 years
No release in over 3 years
Try block code for a X seconds capturing exceptions.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.5
 Project Readme

TryFor

Let you try block code for a X seconds capturing exceptions.

RSpec

require "rails_helper"
require 'try-for'

RSpec.describe 'Example' do
  it 'works ok' do
    try_for(2) { expect(page).to have_css('#page_id') }
  end
end