bonfire-app/.iex.exs
2022-10-25 10:28:07 +13:00

37 lines
1 KiB
Elixir
Executable file

# if Code.ensure_loaded?(ExSync) && function_exported?(ExSync, :register_group_leader, 0) do
# ExSync.register_group_leader()
# end
alias Bonfire.Repo
alias Bonfire.Data
alias Bonfire.Me
alias Bonfire.Social
alias Bonfire.Common
use Common.Utils
import Bonfire.Me.Fake
import Untangle
if module_enabled?(Bonfire.Common.Test.Interactive) and Mix.env() == :test do
# to run tests from iex
# Code.compiler_options(ignore_module_conflict: true)
# Code.compile_file("~/.iex/iex_watch_tests.exs", File.cwd!())
unless GenServer.whereis(Bonfire.Common.Test.Interactive) do
{:ok, pid} = Bonfire.Common.Test.Interactive.start_link()
# Process will not exit when the iex goes out
Process.unlink(pid)
end
Bonfire.Common.Test.Interactive.Helpers.ready()
else
if Mix.env() == :test, do: info("IExWatchTests is not running")
end
# if Code.ensure_loaded?(ExSync) and function_exported?(ExSync, :register_group_leader, 0) do
# ExSync.register_group_leader()
# end
import_if_enabled(Bonfire.Common.Test.Interactive.Helpers)