From 6cc799ba2c4474b9f6dbde6e1594a4ab0afffbab Mon Sep 17 00:00:00 2001 From: vangberg Date: Wed, 19 Aug 2026 10:40:46 +0200 Subject: [PATCH] Use headless Chrome for system tests 1) Avoids opening a Chrome window locally 2) Allows system tests to run on GitHub Actions --- test/application_system_test_case.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb index 23701b43..b7d04904 100644 --- a/test/application_system_test_case.rb +++ b/test/application_system_test_case.rb @@ -1,5 +1,5 @@ require 'test_helper' class ApplicationSystemTestCase < ActionDispatch::SystemTestCase - driven_by :selenium, using: :chrome, screen_size: [1400, 1400] + driven_by :selenium, using: :headless_chrome, screen_size: [1400, 1400] end