spec/dummy/config/environments/test.rb in g5_updatable-0.20.3.pre.1 vs spec/dummy/config/environments/test.rb in g5_updatable-1.0.2.pre.1
- old
+ new
@@ -1,7 +1,10 @@
+# frozen_string_literal: true
+
Rails.application.configure do
- # Settings specified here will take precedence over those in config/application.rb.
+ # 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
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
@@ -11,11 +14,23 @@
# 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