2 require "capybara/poltergeist"
4 # Work around weird debian/ubuntu phantomjs
5 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=817277
6 # https://github.com/ariya/phantomjs/issues/14376
7 ENV["QT_QPA_PLATFORM"] = "phantom" if IO.popen(["phantomjs", "--version"], :err => :close).read.empty?
9 ActiveSupport.on_load(:action_dispatch_system_test_case) do
10 ActionDispatch::SystemTesting::Server.silence_puma = true
13 class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
14 driven_by :poltergeist, :screen_size => [1400, 1400]
17 stub_request(:get, "https://api.hostip.info/country.php?ip=127.0.0.1")
18 .to_return(:status => 404)