TIL how to interactively fix a failing test

from blog Lisp journey, | ↗ original
I knew it was possible, but I got to try it recently. Here I run a test with fiveam. It fails. I tell fiveam to enter the debugger on failures with (setf 5am:*on-error* :debug) so we have an immediate feedback and we can re-run the test from where it left off by choosing the appropriate restart. Other test frameworks like Parachute allow that....