diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 5d955be..d0d4279 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -4,7 +4,9 @@ service frame/stream requests. If user (or more probably: system test) clicks link during this period, request will be sent outside of Turbo, resulting in e.g. stream request sent as HTML instead of TURBO_STREAM. - Content is shown on 'turbo:load' event. --> + Content is shown on 'turbo:load' event. + TODO: hide only in TEST environment? +--> fixin.me diff --git a/config/environments/test.rb b/config/environments/test.rb index 2820ba8..857297d 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -56,4 +56,6 @@ Rails.application.configure do # Annotate rendered view with file names. # config.action_view.annotate_rendered_view_with_filenames = true + + config.log_level = :info end