I'm using jasmine-node to run tests for my node.js application. The problem is that if I run the tests one by one with specifying the spec file (jasmine-node spec/file.spec.js
) - then everything looks great - I get (as an example) the output such as Finished in 0.049 seconds 4 tests, 19 assertions, 1 failure, 0 skipped
.
But if I run tests just by typing the command jasmine-node spec/
- I don't get the result as mentioned above and I can't see which tests failed or succeeded.
Does anyone know how this can be fixed? (I use node.js version 0.12.7 and jasmine-node 1.14.3)