2

I'm using jasmine-node with frisby when I run my tests all I get in the terminal output is red and green dots, I want to see a checklist of all the specs and whether they passed or failed similar to Mocha and Chai.

Any ideas on how to get this desired output from Jasmine?

  • 1
    Similar question: how to run jasmine through node with `npm test`. Flag `--verbose` does not work there as expected ... :-( – mliebelt Sep 12 '17 at 10:33

1 Answers1

2

Use --verbose argument for jasmine-node as follows:

jasmine-node --verbose yourSpec.js

There are other arguments that you might find helpful. See documentation here.

leo.fcx
  • 6,137
  • 2
  • 21
  • 37