Switch off resynchronization by default

Didn't we already do this?
This commit is contained in:
Jonas Nicklas and Nicklas Ramhöj 2011-08-15 15:34:30 +02:00
parent 4e6df9d333
commit ec2ff46220
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ require 'selenium-webdriver'
class Capybara::Selenium::Driver < Capybara::Driver::Base
DEFAULT_OPTIONS = {
:resynchronize => true,
:resynchronize => false,
:resynchronization_timeout => 10,
:browser => :firefox
}