OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/support/system_test.rb

13 lines
309 B

RSpec.configure do |config|
##
# default to rack-test when using system tests without JS
config.before(:each, type: :system) do
driven_by :rack_test
end
##
# Use selenium-backed firefox driver for JS tests
config.before(:each, type: :system, js: true) do
driven_by :selenium
end
end