]> git.openstreetmap.org Git - rails.git/blob - test/application_system_test_case.rb
Set QT_QPA_PLATFORM to offscreen in the test environment
[rails.git] / test / application_system_test_case.rb
1 require "test_helper"
2 require "capybara/poltergeist"
3
4 WebMock.disable_net_connect!(:allow_localhost => true)
5
6 # Work around weird debian/ubuntu phantomjs
7 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=817277
8 # https://github.com/ariya/phantomjs/issues/14376
9 ENV["QT_QPA_PLATFORM"] = "offscreen"
10
11 class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
12   ActionDispatch::SystemTesting::Server.silence_puma = true
13
14   driven_by :poltergeist, :screen_size => [1400, 1400]
15
16   def initialize(*args)
17     stub_request(:get, "http://api.hostip.info/country.php?ip=127.0.0.1")
18       .to_return(:status => 404)
19     super(*args)
20   end
21 end