Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. "jest": {
  2. "setupFiles": [
  3. "<rootDir>/tests/setup/test-shim.js",
  4. "<rootDir>/tests/setup/test-setup.js"
  5. ],
  6. "moduleFileExtensions": [
  7. "ts",
  8. "tsx",
  9. "js"
  10. ],
  11. "preset": "ts-jest/presets/js-with-ts",
  12. "transform": {
  13. "^.+\\.(ts|tsx)$": "ts-jest"
  14. },
  15. "moduleNameMapper": {
  16. "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tests/setup/fileMock.js",
  17. "\\.(css|less)$": "<rootDir>/tests/setup/styleMock.js"
  18. },
  19. "moduleDirectories": [
  20. "node_modules",
  21. "src"
  22. ],
  23. "testMatch": [
  24. "**/tests/**/*.test.(ts|tsx|js)"
  25. ],
  26. "collectCoverage": false
  27. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement