Skip to content

Commit 8d5d045

Browse files
committedJan 24, 2014
spec: more runner solidification
1 parent 9662c9b commit 8d5d045

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎spec/runner.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
}
4545

4646
begin
47-
Selenium::WebDriver::Wait.new(timeout: 120, interval: 5) \
47+
Selenium::WebDriver::Wait.new(timeout: 540, interval: 5) \
4848
.until { not browser.find_element(:css, 'p#totals').text.strip.empty? }
4949

5050
totals = browser.find_element(:css, 'p#totals').text
@@ -53,7 +53,7 @@
5353
puts "#{totals} in #{duration}"
5454
puts
5555

56-
if totals =~ /0 failures/
56+
if totals =~ / 0 failures/
5757
exit 0
5858
end
5959

@@ -92,6 +92,7 @@
9292
trials += 1
9393

9494
unless trials >= 4
95+
browser.quit
9596
retry
9697
end
9798
end

0 commit comments

Comments
 (0)