tietopaketti/config/test.exs
2023-08-29 00:28:44 +03:00

20 lines
705 B
Elixir

import Config
# We don't run a server during test. If one is required,
# you can enable the server option below.
config :tietopaketti, TietopakettiWeb.Endpoint,
http: [ip: {127, 0, 0, 1}, port: 4002],
secret_key_base: "SDxBKd/Of7chqgFqDyucfJObJfV8ksjo7Ls2iwjuZdXG8PIF7s9vE1AT5svwRhG4",
server: false
# In test we don't send emails.
config :tietopaketti, Tietopaketti.Mailer, adapter: Swoosh.Adapters.Test
# Disable swoosh api client as it is only required for production adapters.
config :swoosh, :api_client, false
# Print only warnings and errors during test
config :logger, level: :warning
# Initialize plugs at runtime for faster test compilation
config :phoenix, :plug_init_mode, :runtime