Sha256: 6b414658fa801d1e92a58029aadd25bef33fe3d5bb2ba2afb98f7107506e9663

Contents?: true

Size: 570 Bytes

Versions: 84

Compression:

Stored size: 570 Bytes

Contents

# 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

Version data entries

84 entries across 84 versions & 4 rubygems

Version Path
jets-1.8.11 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.10 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
actionpack-5.2.3 lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
actionpack-5.2.3.rc1 lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
actionpack-6.0.0.beta3 lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
actionpack-5.2.2.1 lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.9 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.8 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
actionpack-6.0.0.beta2 lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.7 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.6 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.5 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.4 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.3 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.2 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.1 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.8.0 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.7.2 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.7.1 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
jets-1.7.0 vendor/rails/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb