osem-fcy/spec/support/save_feature_failures.rb
Ana María Martínez Gómez f4caf79218
Store screenshot when feature test fails
This is useful when debugging a failing test.

Co-authored-by: Stephan Kulow <stephan@kulow.org>
2019-03-15 22:13:40 +01:00

19 lines
734 B
Ruby

# frozen_string_literal: true
RSpec.configure do |config|
config.after(:each, type: :feature) do
example_filename = RSpec.current_example.full_description
example_filename = example_filename.tr(' ', '_')
example_filename = File.expand_path(example_filename, Capybara.save_path)
example_screenshotname = "#{example_filename}.png"
example_filename += '.html'
if RSpec.current_example.exception.present?
save_page(example_filename)
save_page(example_screenshotname)
# remove the file if the test starts working again
else
File.unlink(example_filename) if File.exist?(example_filename)
File.unlink(example_screenshotname) if File.exist?(example_screenshotname)
end
end
end