I have a bunch of jasmine-node specs in a directory. When I run jasmine-node and lets say a specific spec fails, I do not get a message on what specific spec failed. The internal error does surface up but the spec that triggered it does not show up in the stack trace.
Can anyone point to ways to resolve this? Is there a script that can run one spec at a time sequentially and fail if any individual spec fails?
did you try
jasmine-node --verbose
?