Skip to content

Commit ae9265f

Browse files
bjfishpirj
authored andcommitted
Increase Aruba exit_timeout value for TruffleRuby
1 parent 72ec96f commit ae9265f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

features/support/env.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ def with_unbundled_env
3636
World(ArubaExt)
3737

3838
Aruba.configure do |config|
39-
config.exit_timeout = 30
39+
if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'truffleruby'
40+
config.exit_timeout = 120
41+
else
42+
config.exit_timeout = 30
43+
end
4044
end
4145

4246
unless File.directory?('./tmp/example_app')

0 commit comments

Comments
 (0)