Merge branch '15964-fix-docs' refs #15964
[arvados.git] / apps / workbench / config / environments / test.rb.example
index b3cb72aff258b8d9b5946cc1cd9fa1865cfe4cd1..373618c1d66a081c82fdf340649f6f23d887d050 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 ArvadosWorkbench::Application.configure do
   # Settings specified here will take precedence over those in config/application.rb
 
@@ -8,11 +12,8 @@ ArvadosWorkbench::Application.configure do
   config.cache_classes = true
 
   # Configure static asset server for tests with Cache-Control for performance
-  config.serve_static_assets = true
-  config.static_cache_control = "public, max-age=3600"
-
-  # Log error messages when you accidentally call methods on nil
-  config.whiny_nils = true
+  config.public_file_server.enabled = true
+  config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }
 
   # Show full error reports and disable caching
   config.consider_all_requests_local       = true
@@ -29,13 +30,13 @@ ArvadosWorkbench::Application.configure do
   # ActionMailer::Base.deliveries array.
   config.action_mailer.delivery_method = :test
 
-  # Raise exception on mass assignment protection for Active Record models
-  config.active_record.mass_assignment_sanitizer = :strict
-
   # Print deprecation notices to the stderr
   config.active_support.deprecation = :stderr
 
   # Log timing data for API transactions
   config.profiling_enabled = false
 
+  # Can be :random or :sorted. Rails 5 will use :random by default
+  config.active_support.test_order = :sorted
+
 end