Skip to content

Commit

Permalink
reuse the default options from servers on nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Hoblitt committed Oct 3, 2013
1 parent eedad0c commit cc6075d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
$install_root = '/opt/selenium'
$server_options = '-Dwebdriver.enable.native.events=1'
$hub_options = '-role hub'
$node_options = '-role node'
$node_options = "${server_options} -role node"
$java = 'java'
$version = '2.35.0'
$default_hub = 'http://localhost:4444/grid/register'
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/selenium_node_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
shared_examples 'node' do |params|
p = {
:display => ':0',
:options => '-role node',
:options => '-Dwebdriver.enable.native.events=1 -role node',
:hub => 'http://localhost:4444/grid/register',
}

Expand Down

0 comments on commit cc6075d

Please sign in to comment.