From 19820b7fbc448710f119fde84bccd4383ccc4001 Mon Sep 17 00:00:00 2001 From: Mayel de Borniol Date: Tue, 25 Oct 2022 08:37:30 +1300 Subject: [PATCH] remove exsync from iex --- .iex.exs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.iex.exs b/.iex.exs index 875b2ffdeb..32f73edb0d 100755 --- a/.iex.exs +++ b/.iex.exs @@ -11,7 +11,7 @@ use Common.Utils import Bonfire.Me.Fake import Untangle -if module_enabled?(Bonfire.Common.Test.Interactive) && Mix.env() == :test do +if module_enabled?(Bonfire.Common.Test.Interactive) and Mix.env() == :test do # to run tests from iex # Code.compiler_options(ignore_module_conflict: true) @@ -29,8 +29,8 @@ else if Mix.env() == :test, do: info("IExWatchTests is not running") end -if Code.ensure_loaded?(ExSync) && function_exported?(ExSync, :register_group_leader, 0) do - ExSync.register_group_leader() -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)