budget/test/application_system_test_case.rb

8 lines
225 B
Ruby
Raw Normal View History

2022-11-20 15:06:27 -05:00
require "test_helper"
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
driven_by :selenium,
using: ENV["VISIBLE_SYSTEM_TESTS"].present? ? :chrome : :headless_chrome,
screen_size: [ 1400, 1400 ]
2022-11-20 15:06:27 -05:00
end