If you use Timecop gem in the next way, you never get the Timeout::Error exception ``` Timecop.freeze SystemTimer.timeout 1 do sleep end ``` A work around is: - Timecop.return - Timecop.freeze do end https://github.com/travisjeffery/timecop#usage