From 9a5d83598727507c978ac18e47b5fcc1dc687fd3 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 28 Mar 2018 13:30:31 +0800 Subject: [PATCH] Silence puma startup messages when running tests --- test/application_system_test_case.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb index 18d5ec2f7..9abc7aa70 100644 --- a/test/application_system_test_case.rb +++ b/test/application_system_test_case.rb @@ -4,6 +4,8 @@ require "capybara/poltergeist" WebMock.disable_net_connect!(:allow_localhost => true) class ApplicationSystemTestCase < ActionDispatch::SystemTestCase + ActionDispatch::SystemTesting::Server.silence_puma = true + driven_by :poltergeist, :screen_size => [1400, 1400] def initialize(*args) -- 2.39.5