test.rb 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. Rails.application.configure do
  3. # Settings specified here will take precedence over those in config/application.rb.
  4. # The test environment is used exclusively to run your application's
  5. # test suite. You never need to work with it otherwise. Remember that
  6. # your test database is "scratch space" for the test suite and is wiped
  7. # and recreated between test runs. Don't rely on the data there!
  8. config.cache_classes = true
  9. # Do not eager load code on boot. This avoids loading your whole application
  10. # just for the purpose of running a single test. If you are using a tool that
  11. # preloads Rails for running tests, you may have to set it to true.
  12. config.eager_load = false
  13. # Configure public file server for tests with Cache-Control for performance.
  14. config.public_file_server.enabled = true
  15. config.public_file_server.headers = {
  16. 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
  17. }
  18. # Show full error reports and disable caching.
  19. config.consider_all_requests_local = true
  20. config.action_controller.perform_caching = false
  21. # Do not fallback to assets pipeline if a precompiled asset is missed.
  22. config.assets.compile = false
  23. # Raise exceptions instead of rendering exception templates.
  24. config.action_dispatch.show_exceptions = false
  25. # Disable request forgery protection in test environment.
  26. config.action_controller.allow_forgery_protection = false
  27. # Store uploaded files on the local file system in a temporary directory.
  28. # config.active_storage.service = :test
  29. config.action_mailer.perform_caching = false
  30. # Tell Action Mailer not to deliver emails to the real world.
  31. # The :test delivery method accumulates sent emails in the
  32. # ActionMailer::Base.deliveries array.
  33. config.action_mailer.delivery_method = :test
  34. # Sort the order test cases are executed.
  35. config.active_support.test_order = :sorted
  36. # Print deprecation notices to the stderr.
  37. config.active_support.deprecation = :stderr
  38. # Enable autoload
  39. config.dependency_loading = true
  40. # Reduce log level to speed up test runs.
  41. config.after_initialize do
  42. ActiveRecord::Base.logger = Rails.logger.clone
  43. ActiveRecord::Base.logger.level = Logger::INFO
  44. end
  45. end