lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb



# frozen_string_literal: true

module ActionDispatch
  module SystemTesting
    module TestHelpers
      module SetupAndTeardown # :nodoc:
        DEFAULT_HOST = "http://127.0.0.1"

        def host!(host)
          super
          Capybara.app_host = host
        end

        def before_setup
          host! DEFAULT_HOST
          super
        end

        def after_teardown
          begin
            take_failed_screenshot
          ensure
            Capybara.reset_sessions!
          end
        ensure
          super
        end
      end
    end
  end
end