I am using grunt-contrib-jasmine to run my javascript specs. How to write debug output to the console when starting the specifications, that is, how do I get
console.log("something");
to show output in console? I found that I can get the output by running:
$ grunt jasmine --verbose
But it prints a lot of information that is not interesting to me. How can I just see the output from console.log?
gruntjs jasmine
opsb Feb 20 '13 at 21:32 2013-02-20 21:32
source share