185
|
1 # The test environment is used exclusively to run your application's
|
|
2 # test suite. You never need to work with it otherwise. Remember that
|
|
3 # your test database is "scratch space" for the test suite and is wiped
|
|
4 # and recreated between test runs. Don't rely on the data there!
|
|
5
|
0
|
6 Rails.application.configure do
|
|
7 # Settings specified here will take precedence over those in config/application.rb.
|
|
8
|
|
9 config.cache_classes = true
|
|
10
|
|
11 # Do not eager load code on boot. This avoids loading your whole application
|
|
12 # just for the purpose of running a single test. If you are using a tool that
|
|
13 # preloads Rails for running tests, you may have to set it to true.
|
|
14 config.eager_load = false
|
|
15
|
72
|
16 # Configure public file server for tests with Cache-Control for performance.
|
|
17 config.public_file_server.enabled = true
|
|
18 config.public_file_server.headers = {
|
185
|
19 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
|
72
|
20 }
|
0
|
21
|
|
22 # Show full error reports and disable caching.
|
|
23 config.consider_all_requests_local = true
|
|
24 config.action_controller.perform_caching = false
|
185
|
25 config.cache_store = :null_store
|
0
|
26
|
|
27 # Raise exceptions instead of rendering exception templates.
|
|
28 config.action_dispatch.show_exceptions = false
|
|
29
|
|
30 # Disable request forgery protection in test environment.
|
|
31 config.action_controller.allow_forgery_protection = false
|
|
32
|
|
33 # Print deprecation notices to the stderr.
|
|
34 config.active_support.deprecation = :stderr
|
|
35
|
185
|
36 # Raises error for missing translations.
|
0
|
37 # config.action_view.raise_on_missing_translations = true
|
|
38 end
|