We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc146cd commit 6a9c15eCopy full SHA for 6a9c15e
spec/runner.rb
@@ -5,15 +5,17 @@
5
6
# setup tunnel
7
begin
8
- File.open('tunnel.jar', 'w') {|f|
+ File.open('BrowserStackTunnel.jar', 'w') {|f|
9
f.write RestClient.get('http://www.browserstack.com/BrowserStackTunnel.jar').to_str
10
}
11
12
- tunnel = IO.popen 'java -jar tunnel.jar $BS_AUTHKEY localhost,9292,0 -tunnelIdentifier $TRAVIS_JOB_ID'
+ tunnel = IO.popen 'java -jar BrowserStackTunnel.jar $BS_AUTHKEY localhost,9292,0 -tunnelIdentifier $TRAVIS_JOB_ID'
13
14
loop do
15
break if tunnel.gets.start_with? 'You can now access'
16
end
17
+rescue
18
+ retry
19
20
21
# configure based on environment variables
0 commit comments