ash_admin/test/test_helper.exs

12 lines
276 B
Elixir
Raw Permalink Normal View History

2021-03-22 19:41:22 +13:00
ExUnit.start()
Logger.configure(level: :debug)
2022-05-26 04:17:52 +12:00
Application.ensure_all_started(:os_mon)
children = [
AshAdmin.Test.Endpoint,
{Phoenix.PubSub, [name: AshAdmin.Test.PubSub, adapter: Phoenix.PubSub.PG2]}
]
{:ok, _} = Supervisor.start_link(children, strategy: :one_for_one)