lib/gnawrnip/rspec.rb in gnawrnip-0.2.5 vs lib/gnawrnip/rspec.rb in gnawrnip-0.3.0
- old
+ new
@@ -3,10 +3,14 @@
RSpec.configure do |config|
config.before(:all) do
Gnawrnip.ready!
end
+ config.after(:all) do
+ Gnawrnip.finish!
+ end
+
# https://github.com/jnicklas/capybara/blob/master/lib/capybara/rspec.rb
fetch_current_example = RSpec.respond_to?(:current_example) ?
proc { RSpec.current_example } : proc { |context| context.example }
config.before(:each, turnip: true) do
@@ -20,10 +24,8 @@
if example.exception
Gnawrnip.photographer.take_shot
screenshots = Gnawrnip.photographer.frames.compact
example.metadata[:gnawrnip][:screenshot] = screenshots
- else
- Gnawrnip.photographer.discard!
end
end
end