Sha256: b10ef8a26043070ebd8f2a9b1dbffb293e56e3f315b41dfb58dabec679468b64

Contents?: true

Size: 1.57 KB

Versions: 10

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

# 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!

Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  config.cache_classes = false
  config.action_view.cache_template_loading = true

  # Do not eager load code on boot. This avoids loading your whole application
  # 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 public file server for tests with Cache-Control for performance.
  config.public_file_server.enabled = true
  config.public_file_server.headers = {
    'Cache-Control' => "public, max-age=#{1.hour.to_i}",
  }

  # Show full error reports and disable caching.
  config.consider_all_requests_local       = true
  config.action_controller.perform_caching = false
  config.cache_store = :null_store

  # Raise exceptions instead of rendering exception templates.
  config.action_dispatch.show_exceptions = false

  # Disable request forgery protection in test environment.
  config.action_controller.allow_forgery_protection = false

  # Print deprecation notices to the stderr.
  config.active_support.deprecation = :stderr

  # Raises error for missing translations.
  # config.action_view.raise_on_missing_translations = true
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
my_api_client-0.26.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.25.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.24.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.23.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.22.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.21.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.20.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.19.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.18.0 rails_app/rails_6.0/config/environments/test.rb
my_api_client-0.17.0 rails_app/rails_6.0/config/environments/test.rb