Guest User

Untitled

a guest
Jan 20th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. module.exports = {
  2. rootDir: "src",
  3. testMatch: ["**/__tests__/**/*.test.(ts|tsx|js|jsx)"],
  4. verbose: false,
  5. clearMocks: true,
  6. resetModules: true,
  7. coveragePathIgnorePatterns: [
  8. "/node_modules/",
  9. "/__fixtures__/",
  10. "/__tests__/",
  11. "/(__)?mock(s__)?/",
  12. "/__jest__/",
  13. ".?.min.js"
  14. ],
  15. moduleDirectories: ["node_modules", "src"],
  16. transform: {
  17. "^.+\\.(ts|tsx)$": "ts-jest"
  18. },
  19. moduleFileExtensions: ["js", "jsx", "json", "ts"]
  20. };
Add Comment
Please, Sign In to add comment