All files / msa2 jest.config.js

0% Statements 0/1
100% Branches 0/0
100% Functions 0/0
0% Lines 0/1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18                                   
// For a detailed explanation regarding each configuration property, visit:
// https://jestjs.io/docs/en/configuration.html
 
module.exports = {
  "setupFiles": ["./src/test/setupJest.js", "jest-canvas-mock"],
  "coverageDirectory": "./coverage/",
  "collectCoverage": true,
  "coverageReporters": ["lcov", "json"],
  "transformIgnorePatterns": [
    "/node_modules/(?!lodash-es)"
  ],
  // will come with jest 24
  // https://github.com/facebook/jest/pull/6143
  //resolveSnapshotPath: (testPath, snapshotExtension) => {
    //return testPath.replace('__tests__', '__snapshots__') + snapshotExtension;
  //},
};