0

The testing framework (http://theintern.io) comes with built in 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?

jantimon
  • 36,840
  • 23
  • 122
  • 185

1 Answers1

2

You can use the 'lcovhtml' (Intern 1.4–2.2) or 'LcovHtml' (Intern 3+) reporter to generate a full HTML coverage report.

C Snover
  • 17,908
  • 5
  • 29
  • 39