ash_graphql/test/support/test_helpers.ex

14 lines
270 B
Elixir
Raw Normal View History

2022-09-28 19:28:44 +13:00
defmodule AshGraphql.TestHelpers do
@moduledoc false
2022-09-28 19:32:55 +13:00
def stop_ets do
2022-09-28 19:28:44 +13:00
for resource <- Ash.Registry.Info.entries(AshGraphql.Test.Registry) do
try do
Ash.DataLayer.Ets.stop(resource)
rescue
_ ->
:ok
end
end
end
end