1

If I put IEx.pry into my elixir code and then run it with IEx, the breakpoint is hit as expected but it times out after a few seconds.

I know I can adjust the timeout length by passing a number of milliseconds to IEx.pry, but I don't want any timeout at all.

How do I stop it timing out?

user2355213
  • 447
  • 4
  • 13

1 Answers1

1

As was mentioned in the linked answer.

Run the tests with --trace option.

mix test --trace
szaboat
  • 593
  • 3
  • 11