Merge branch '15964-fix-docs' refs #15964
[arvados.git] / apps / workbench / config / environments / test.rb.example
index 1c790208a522f658c5a017020e59dcb2b277b200..373618c1d66a081c82fdf340649f6f23d887d050 100644 (file)
@@ -12,8 +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"
+  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
@@ -36,4 +36,7 @@ ArvadosWorkbench::Application.configure do
   # 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