I\'m using grunt-contrib-jasmine to run my javascript specs. How do I write debug output to the console when running specs i.e. how do I get
console.log(\"so
You can also use dump(variable) or console.log(variable). Source is the excellent Year of Moo.
dump(variable)
console.log(variable)