The intern testing framework (http://theintern.io) comes with built in istanbul support.
Adding lcov
to the reports array generates only a lcov.info file which might be converted with genhtml
:
define({
// ..
reporters: [
'lcov'
],
//..
});
Is it possible to generate a full html report?