From 7da72062b34ba013e96368670d3d37601590c1d2 Mon Sep 17 00:00:00 2001 From: Erik Hanson & Christian Williams Date: Mon, 13 Jul 2009 18:00:58 -0700 Subject: [PATCH] Restore noisy selenium logging cuz the fix was making selenium server fail to close. --- contrib/ruby/jasmine_runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/ruby/jasmine_runner.rb b/contrib/ruby/jasmine_runner.rb index 17dcda8..302cb65 100644 --- a/contrib/ruby/jasmine_runner.rb +++ b/contrib/ruby/jasmine_runner.rb @@ -144,7 +144,7 @@ module Jasmine @selenium_server_port = Jasmine::find_unused_port @selenium_pid = fork do - exec "java -jar #{@selenium_jar_path} -port #{@selenium_server_port} >/dev/null" + exec "java -jar #{@selenium_jar_path} -port #{@selenium_server_port}" end puts "selenium started. pid is #{@selenium_pid}"