If I run a test with iex, like:
iex -S mix test test/path/file_test.exs
and it completes, it drops me into a regular iex prompt where it waits for a break point. Great! However I can't figure out how to re-run the test so I have to <C-c> <C-c> <up> <enter> to run it again. It's a bit of a pain and seems unnecessary.
I want to run it inside iex so that my pry breakpoints will work. Is there a way to rerun the initial test/mix command again from within the iex prompt?