aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/system_testing/test_helper.rb
blob: 68b187ed7ad629a1c1678170c2aca912d25e8b02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
require 'capybara/rails'

module SystemTesting
  module TestHelper
    include Capybara::DSL

    def after_teardown
      Capybara.reset_sessions!
      super
    end
  end
end