From d08966c7107ad4c4a71991bbfea0577edddabcad Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Tue, 16 Jan 2024 18:34:40 -0500 Subject: [PATCH] Try increasing process_timeout on system test --- test_rails/system/test_help_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_rails/system/test_help_test.rb b/test_rails/system/test_help_test.rb index 35f358082..6c5e495ef 100644 --- a/test_rails/system/test_help_test.rb +++ b/test_rails/system/test_help_test.rb @@ -29,7 +29,7 @@ def index class TestHelpTest < ActionDispatch::SystemTestCase # Any driver that runs the app in a separate thread will test what we want here. - driven_by :cuprite + driven_by :cuprite, options: { process_timeout: 30 } # Ensure this test uses this app instance setup { Rails.application = TestApp.instance }