fintory/flow-cov

View on GitHub
lib/reporters/json.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function jsonReporter(report) {
  const contents = JSON.stringify(report, null, report.config.pretty ? 2 : 0)

  console.log(contents)

  return {
    reporterName: 'json',
    contents,
  }
}