X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/03395937ba05b9e3192e346a355c691f45cc7c85..a7631a1ccb6e2a6925d00a06562e171c4ce4ea2f:/apps/workbench/config/environments/test.rb.example diff --git a/apps/workbench/config/environments/test.rb.example b/apps/workbench/config/environments/test.rb.example index fd034d3185..373618c1d6 100644 --- a/apps/workbench/config/environments/test.rb.example +++ b/apps/workbench/config/environments/test.rb.example @@ -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,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 @@ -32,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