MatthiasMargot/redux-communication

View on GitHub
jest.config.js

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable */

module.exports = {
  transform:         {
    '^.+\\.js?$': 'babel-jest',
  },
  coverageDirectory: './coverage/',
  collectCoverage:   true,
  coverageReporters: [
    'json',
    'html',
    'json-summary',
    'text',
    'lcov',
  ],
}