this repo has no description
at main 536 B view raw
1import Config 2 3# We don't run a server during test. If one is required, 4# you can enable the server option below. 5config :esl_hn, EslHnWeb.Endpoint, 6 http: [ip: {127, 0, 0, 1}, port: 0], 7 secret_key_base: 8 "6iR9shI35kN7Xr5bOLgBVMHXTZQS49Gwu82WW4rsr0uhaia7D+NjfNrhhvcOp4rr", 9 server: true 10 11# Disable main refresher in tests 12config :esl_hn, refresh: 0 13 14# Print only warnings and errors during test 15config :logger, level: :warning 16 17# Initialize plugs at runtime for faster test compilation 18config :phoenix, :plug_init_mode, :runtime