projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Take viewport intersection into account when sorting changesets
[rails.git]
/
config
/
initializers
/
selenium.rb
1
if Rails.env.test?
2
require "active_support/testing/parallelization"
3
4
module OpenStreetMap
5
module Selenium
6
module BidiPort
7
def initialize(config)
8
super
9
10
@extra_args = Array(@extra_args) << "--websocket-port=0"
11
end
12
end
13
end
14
end
15
16
Selenium::WebDriver::ServiceManager.prepend(OpenStreetMap::Selenium::BidiPort)
17
end