From 41326fd6d48749c6e81322e3c4c4765a51aa490f Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 31 May 2018 22:46:45 +0100 Subject: [PATCH] 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 --- test/application_system_test_case.rb | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.43.2