summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-06-21 21:38:16 -0500
committerDouwe Maan <douwe@selenight.nl>2017-06-21 21:38:16 -0500
commitaf5bf71365712f1102eccc22aa3af0c4b5c1860d (patch)
treecbdead0ae05b02f06ebbbbeaffbed1f74455a016
parentf85d0a00240585e2cc1cf0b79e033bd22cb44e32 (diff)
downloadgitlab-ce-dm-restore-capybara-screenshot.tar.gz
Don't reset the session when the example failed, because we need capybara-screenshot to have access to itdm-restore-capybara-screenshot
-rw-r--r--spec/support/capybara.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/support/capybara.rb b/spec/support/capybara.rb
index 4aa81a03558..3e5d6cf1364 100644
--- a/spec/support/capybara.rb
+++ b/spec/support/capybara.rb
@@ -36,12 +36,13 @@ RSpec.configure do |config|
$capybara_server_already_started = true
end
- config.after(:each, :js) do
+ config.after(:each, :js) do |example|
# capybara/rspec already calls Capybara.reset_sessions! in an `after` hook,
# but `block_and_wait_for_requests_complete` is called before it so by
# calling it explicitely here, we prevent any new requests from being fired
# See https://github.com/teamcapybara/capybara/blob/ffb41cfad620de1961bb49b1562a9fa9b28c0903/lib/capybara/rspec.rb#L20-L25
- Capybara.reset_sessions!
+ # We don't reset the session when the example failed, because we need capybara-screenshot to have access to it.
+ Capybara.reset_sessions! unless example.exception
block_and_wait_for_requests_complete
end
end