diff options
Diffstat (limited to 'config/environments/test.rb')
-rw-r--r-- | config/environments/test.rb | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 0000000..adbb4a6 --- /dev/null +++ b/config/environments/test.rb | |||
@@ -0,0 +1,64 @@ | |||
1 | require "active_support/core_ext/integer/time" | ||
2 | |||
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! | ||
7 | |||
8 | Rails.application.configure do | ||
9 | # Settings specified here will take precedence over those in config/application.rb. | ||
10 | |||
11 | # While tests run files are not watched, reloading is not necessary. | ||
12 | config.enable_reloading = false | ||
13 | |||
14 | # Eager loading loads your entire application. When running a single test locally, | ||
15 | # this is usually not necessary, and can slow down your test suite. However, it's | ||
16 | # recommended that you enable it in continuous integration systems to ensure eager | ||
17 | # loading is working properly before deploying your code. | ||
18 | config.eager_load = ENV["CI"].present? | ||
19 | |||
20 | # Configure public file server for tests with Cache-Control for performance. | ||
21 | config.public_file_server.enabled = true | ||
22 | config.public_file_server.headers = { | ||
23 | "Cache-Control" => "public, max-age=#{1.hour.to_i}" | ||
24 | } | ||
25 | |||
26 | # Show full error reports and disable caching. | ||
27 | config.consider_all_requests_local = true | ||
28 | config.action_controller.perform_caching = false | ||
29 | config.cache_store = :null_store | ||
30 | |||
31 | # Render exception templates for rescuable exceptions and raise for other exceptions. | ||
32 | config.action_dispatch.show_exceptions = :rescuable | ||
33 | |||
34 | # Disable request forgery protection in test environment. | ||
35 | config.action_controller.allow_forgery_protection = false | ||
36 | |||
37 | # Store uploaded files on the local file system in a temporary directory. | ||
38 | config.active_storage.service = :test | ||
39 | |||
40 | config.action_mailer.perform_caching = false | ||
41 | |||
42 | # Tell Action Mailer not to deliver emails to the real world. | ||
43 | # The :test delivery method accumulates sent emails in the | ||
44 | # ActionMailer::Base.deliveries array. | ||
45 | config.action_mailer.delivery_method = :test | ||
46 | |||
47 | # Print deprecation notices to the stderr. | ||
48 | config.active_support.deprecation = :stderr | ||
49 | |||
50 | # Raise exceptions for disallowed deprecations. | ||
51 | config.active_support.disallowed_deprecation = :raise | ||
52 | |||
53 | # Tell Active Support which deprecation messages to disallow. | ||
54 | config.active_support.disallowed_deprecation_warnings = [] | ||
55 | |||
56 | # Raises error for missing translations. | ||
57 | # config.i18n.raise_on_missing_translations = true | ||
58 | |||
59 | # Annotate rendered view with file names. | ||
60 | # config.action_view.annotate_rendered_view_with_filenames = true | ||
61 | |||
62 | # Raise error when a before_action's only/except options reference missing actions | ||
63 | config.action_controller.raise_on_missing_callback_actions = true | ||
64 | end | ||