I'm pretty new in Elixir, but have a lot fun with it!
I came from Ruby world, so start looking analogy. And there is exist debugging tool pry
. Using binding.pry
I can interrupt any session. I found something similar in Elixir – IEx.pry
. But it doesn't work when I'm testing something through ExUnit
.
Question – is it is possible to interrupt testing session and run iex with current environment?