1 require "active_support/core_ext/integer/time"
3 # The test environment is used exclusively to run your application's
4 # test suite. You never need to work with it otherwise. Remember that
5 # your test database is "scratch space" for the test suite and is wiped
6 # and recreated between test runs. Don't rely on the data there!
8 Rails.application.configure do
9 # Settings specified here will take precedence over those in config/application.rb.
11 # While tests run files are not watched, reloading is not necessary.
12 config.enable_reloading = false
14 # disable logging in tests, for speed increases. Set to :info to bring back logging
15 config.log_level = :warn
17 # Eager loading loads your entire application. When running a single test locally,
18 # this is usually not necessary, and can slow down your test suite. However, it's
19 # recommended that you enable it in continuous integration systems to ensure eager
20 # loading is working properly before deploying your code.
21 config.eager_load = ENV["CI"].present?
23 # Configure public file server for tests with Cache-Control for performance.
24 config.public_file_server.enabled = true
25 config.public_file_server.headers = {
26 "Cache-Control" => "public, max-age=#{1.hour.to_i}"
29 # Show full error reports and disable caching.
30 config.consider_all_requests_local = true
31 config.action_controller.perform_caching = false
32 config.cache_store = :null_store
34 # Raise exceptions instead of rendering exception templates.
35 config.action_dispatch.show_exceptions = :rescuable
37 # Disable request forgery protection in test environment.
38 config.action_controller.allow_forgery_protection = false
40 # Store uploaded files on the local file system in a temporary directory.
41 config.active_storage.service = :test
43 config.action_mailer.perform_caching = false
45 # Tell Action Mailer not to deliver emails to the real world.
46 # The :test delivery method accumulates sent emails in the
47 # ActionMailer::Base.deliveries array.
48 config.action_mailer.delivery_method = :test
50 # Print deprecation notices to the stderr.
51 config.active_support.deprecation = :stderr
53 # Raise exceptions for disallowed deprecations.
54 config.active_support.disallowed_deprecation = :raise
56 # Tell Active Support which deprecation messages to disallow.
57 config.active_support.disallowed_deprecation_warnings = []
59 # Export translations automatically.
60 config.middleware.use I18n::JS::Middleware
62 # Raises error for missing translations.
63 config.i18n.raise_on_missing_translations = true
65 # Annotate rendered view with file names.
66 # config.action_view.annotate_rendered_view_with_filenames = true
68 # Raise error when a before_action's only/except options reference missing actions
69 config.action_controller.raise_on_missing_callback_actions = true
71 # Use the test adapter for ActiveJob during testing.
72 config.active_job.queue_adapter = :test
74 # Allow FactoryBot to set primary key attributes
75 config.factory_bot.reject_primary_key_attributes = false