What’s the most convenient way to have the debugger pause upon hitting a failed @test
?
I assume I could set a breakpoint on some function in the Test
package, but figuring out (and remembering) which is the appropriate function seems a bit tedious. Is there an easier way?
MWE:
@test true # Don't pause
@test false # Pause and allow me to investigate why the test failed