ash_authentication_phoenix/config/test.exs
Andrew Hacking 7c90908ad9
test: dynamic router - some additional tests, fixes and failures (#493)
* test: Scoped router tests

* test: Initial controller tests

* docs: Router helper docs, including :unscoped

* chore: Code formatting

* fix: ensure path params are processed on strategy router

* test: Working controller tests for register, sign-in, sign-out

---------

Co-authored-by: Zach Daniel <zach@zachdaniel.dev>
2024-08-14 11:48:18 -04:00

20 lines
530 B
Elixir

import Config
config :bcrypt_elixir, :log_rounds, 4
config :ash, :disable_async?, true
config :ash_authentication_phoenix, ash_domains: [Example.Accounts]
config :ash_authentication_phoenix,
signing_secret: "Marty McFly in the past with the Delorean"
config :phoenix, :json_library, Jason
config :ash_authentication_phoenix, AshAuthentication.Phoenix.Test.Endpoint,
server: false,
debug_errors: true,
live_view: [signing_salt: "aaaaaaaa"],
secret_key_base: String.duplicate("a", 64)
config :logger, level: :error