spec/spec_helper.rb in webdrivers-3.8.1 vs spec/spec_helper.rb in webdrivers-3.9.0

- old
+ new

@@ -7,6 +7,12 @@ require 'webdrivers' RSpec.configure do |config| config.filter_run_including focus: true unless ENV['CI'] config.run_all_when_everything_filtered = true + config.expect_with :rspec do |expectations| + expectations.syntax = :expect + end + config.mock_with :rspec do |mocks| + mocks.verify_partial_doubles = true + end end