module ActionDispatch module SystemTesting module TestHelpers module SetupAndTeardown # :nodoc: DEFAULT_HOST = "127.0.0.1" def before_setup host! DEFAULT_HOST super end def after_teardown take_failed_screenshot Capybara.reset_sessions! super end end end end end