Skip to content

Commit

Permalink
increase cucumber/aruba timeout to 60 seconds for ruby 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrothenberg committed Jan 23, 2015
1 parent 16314d1 commit 514148c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion features/support/env.rb
@@ -1,7 +1,11 @@
require 'aruba/cucumber'

Before do
@aruba_timeout_seconds = 30
if RUBY_VERSION == "1.9.3"
@aruba_timeout_seconds = 60
else
@aruba_timeout_seconds = 30
end
end

def aruba_path(file_or_dir, source_foldername)
Expand Down

0 comments on commit 514148c

Please sign in to comment.