Skip to content

Instantly share code, notes, and snippets.

@radavis
Created November 17, 2015 20:32
Show Gist options
  • Save radavis/c1dcacb5afb1ac35148b to your computer and use it in GitHub Desktop.
Save radavis/c1dcacb5afb1ac35148b to your computer and use it in GitHub Desktop.

Exit out of long-running specs in your RSpec test suite.

# spec_helper.rb

require "timeout"

RSpec.configure do |config|
  config.around(:each) do |example|
    Timeout::timeout(5) {
      example.run
    }
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment