I\'m trying to launch IEx.pry within a test. However I cannot get to run the tests within an iex session. Note that I\'m not using mix.
IEx.pry
ExUnit.start
According to the ExUnit documentation, ExUnit.run/0 should only be used if you don't want to autostart your tests when you call ExUnit.start/1.
ExUnit.run/0
ExUnit.start/1
You always have to call ExUnit.start() which would automatically run all the tests unless you pass autorun: false.
autorun: false