1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
begin
require 'aruba/rspec'
Aruba.configure do |config|
if RUBY_PLATFORM =~ /java/ || defined?(Rubinius) || (defined?(RUBY_ENGINE) && RUBY_ENGINE == 'truffleruby')
config.exit_timeout = 60
else
config.exit_timeout = 5
end
end
rescue NameError => e
# This silences a name error on unsupported version of JRuby
raise e unless RSpec::Support::Ruby.jruby? && JRUBY_VERSION =~ /9\.1\.17\.0/
rescue LoadError => e
# This silences a load error on unsupported version of JRuby
raise e unless RSpec::Support::Ruby.jruby? && JRUBY_VERSION =~ /9\.1\.17\.0/
end
|