Skip to content

Instantly share code, notes, and snippets.

@mudge
Created October 26, 2016 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mudge/31a976b7aa2344e041eb53d08fd3f37d to your computer and use it in GitHub Desktop.
Save mudge/31a976b7aa2344e041eb53d08fd3f37d to your computer and use it in GitHub Desktop.
Run every Cucumber scenario with a separate Capybara session
Around do |scenario, block|
Capybara.using_session(scenario.object_id) do
block.call
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment