From: Tom Hughes Date: Thu, 31 May 2018 21:46:45 +0000 (+0100) Subject: Set QT_QPA_PLATFORM to offscreen in the test environment X-Git-Tag: live~2998 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/41326fd6d48749c6e81322e3c4c4765a51aa490f?ds=sidebyside Set QT_QPA_PLATFORM to offscreen in the test environment Works around an issue with the weird way the debian/ubuntu version of phantomjs is built: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=817277 https://github.com/ariya/phantomjs/issues/14376 --- diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb index 9abc7aa70..df67ac914 100644 --- a/test/application_system_test_case.rb +++ b/test/application_system_test_case.rb @@ -3,6 +3,11 @@ require "capybara/poltergeist" WebMock.disable_net_connect!(:allow_localhost => true) +# Work around weird debian/ubuntu phantomjs +# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=817277 +# https://github.com/ariya/phantomjs/issues/14376 +ENV["QT_QPA_PLATFORM"] = "offscreen" + class ApplicationSystemTestCase < ActionDispatch::SystemTestCase ActionDispatch::SystemTesting::Server.silence_puma = true