Is there a way to get tape to run with the debugger so that I can break at debugger statements and use the REPL?
@jimkang node debug test.js
@Raynos Oh! Looks like bin/tape just runs a bunch of files together. So, tests can be run like any other Node script. Neat.
To debug your tests in JetBrains IDE you can use this instruction:
https://medium.com/@vladmystetskyi/how-to-debug-tape-tests-in-jetbrains-ide-webstorm-idea-etc-1979aa99c490
Most helpful comment
@Raynos Oh! Looks like bin/tape just runs a bunch of files together. So, tests can be run like any other Node script. Neat.