Is there any way to start code coverage without a browser in intelliJ?
http://www.jetbrains.com/webstorm/webhelp/monitoring-code-coverage-for-javascript.html
This is only a Jetbrains lighting tutorial, but both require a browser, so I can’t check my Node.js code . I bet I'm not the only one who wants to get a report on their Node.js code using IntelliJ :)
Karma and JsTestDriver seem to run tests in a browser, so you can test Node.js code with them. In any case, I can perform mocha tests directly from the idea, but without coverage.
Ville source
share