spec/dummy/config/environments/test.rb in g5_authenticatable_api-0.4.1 vs spec/dummy/config/environments/test.rb in g5_authenticatable_api-1.0.0.pre.1

- old
+ new

@@ -1,5 +1,7 @@ +# frozen_string_literal: true + Dummy::Application.configure do # Settings specified here will take precedence over those in config/application.rb. # The test environment is used exclusively to run your application's # test suite. You never need to work with it otherwise. Remember that @@ -11,11 +13,25 @@ # just for the purpose of running a single test. If you are using a tool that # preloads Rails for running tests, you may have to set it to true. config.eager_load = false # Configure static asset server for tests with Cache-Control for performance. - config.serve_static_assets = true - config.static_cache_control = "public, max-age=3600" + cache_header_value = 'public, max-age=3600' + + if config.respond_to?(:public_file_server) + config.public_file_server.enabled = true + config.public_file_server.headers = { + 'Cache-Control' => cache_header_value + } + else + config.static_cache_control = cache_header_value + + if config.respond_to?(:serve_static_files=) + config.serve_static_files = true + else + config.serve_static_assets = true + end + end # Show full error reports and disable caching. config.consider_all_requests_local = true config.action_controller.perform_caching = false