budget/test/application_system_test_case.rb
Andrew Tomaka 72ffe7215d
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Start running Rails from the main branch (#16)
Reviewed-on: #16
2024-06-21 23:35:36 -04:00

7 lines
225 B
Ruby

require "test_helper"
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
driven_by :selenium,
using: ENV["VISIBLE_SYSTEM_TESTS"].present? ? :chrome : :headless_chrome,
screen_size: [ 1400, 1400 ]
end