You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.6 KiB

9 months ago
  1. require "active_support/core_ext/integer/time"
  2. # The test environment is used exclusively to run your application's
  3. # test suite. You never need to work with it otherwise. Remember that
  4. # your test database is "scratch space" for the test suite and is wiped
  5. # and recreated between test runs. Don't rely on the data there!
  6. Rails.application.configure do
  7. # Settings specified here will take precedence over those in config/application.rb.
  8. # While tests run files are not watched, reloading is not necessary.
  9. config.enable_reloading = false
  10. # Eager loading loads your entire application. When running a single test locally,
  11. # this is usually not necessary, and can slow down your test suite. However, it's
  12. # recommended that you enable it in continuous integration systems to ensure eager
  13. # loading is working properly before deploying your code.
  14. config.eager_load = ENV["CI"].present?
  15. # Configure public file server for tests with Cache-Control for performance.
  16. config.public_file_server.enabled = true
  17. config.public_file_server.headers = {
  18. "Cache-Control" => "public, max-age=#{1.hour.to_i}"
  19. }
  20. # Show full error reports and disable caching.
  21. config.consider_all_requests_local = true
  22. config.action_controller.perform_caching = false
  23. config.cache_store = :null_store
  24. # Render exception templates for rescuable exceptions and raise for other exceptions.
  25. config.action_dispatch.show_exceptions = :rescuable
  26. # Disable request forgery protection in test environment.
  27. config.action_controller.allow_forgery_protection = false
  28. # Store uploaded files on the local file system in a temporary directory.
  29. config.active_storage.service = :test
  30. config.action_mailer.perform_caching = false
  31. # Tell Action Mailer not to deliver emails to the real world.
  32. # The :test delivery method accumulates sent emails in the
  33. # ActionMailer::Base.deliveries array.
  34. config.action_mailer.delivery_method = :test
  35. # Print deprecation notices to the stderr.
  36. config.active_support.deprecation = :stderr
  37. # Raise exceptions for disallowed deprecations.
  38. config.active_support.disallowed_deprecation = :raise
  39. # Tell Active Support which deprecation messages to disallow.
  40. config.active_support.disallowed_deprecation_warnings = []
  41. # Raises error for missing translations.
  42. # config.i18n.raise_on_missing_translations = true
  43. # Annotate rendered view with file names.
  44. # config.action_view.annotate_rendered_view_with_filenames = true
  45. # Raise error when a before_action's only/except options reference missing actions
  46. config.action_controller.raise_on_missing_callback_actions = true
  47. end