1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00
thoughtbot--factory_bot_rails/features/support/env.rb
Joshua Clayton 9e0b178c6f Correctly configure Aruba command timeout
This removes the misconfiguration of Aruba timeout by instance variable
2016-04-07 17:52:00 -04:00

21 lines
675 B
Ruby

require 'aruba/cucumber'
PROJECT_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..')).freeze
Aruba.configure do |config|
config.exit_timeout = Integer ENV.fetch("ARUBA_TIMEOUT") { 120 }
end
Aruba.configure do |config|
config.before_cmd do |cmd|
set_env('JRUBY_OPTS', "-X-C #{ENV['JRUBY_OPTS']}") # disable JIT since these processes are so short lived
java_options = ENV['JAVA_OPTS']
if 1.size == 4 # 4 for 32 bit java, 8 for 64 bit java.
set_env('JAVA_OPTS', "-d32 #{java_options}")
else
set_env('JAVA_OPTS', "-XX:+TieredCompilation -XX:TieredStopAtLevel=1 #{java_options}")
end
end
end if RUBY_PLATFORM == 'java'