Skip to content

Commit

Permalink
Switch to headless chrome by default (#50512)
Browse files Browse the repository at this point in the history
So it'll work out of the box with cloud CI.
  • Loading branch information
dhh committed Jan 1, 2024
1 parent f50e7b6 commit e234e83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
@@ -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
@@ -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
@@ -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

0 comments on commit e234e83

Please sign in to comment.