jest.config.ts 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /**
  2. * @copyright Copyright (c) 2020 Marco Ambrosini <marcoambrosini@pm.me>
  3. *
  4. * @author Marco Ambrosini <marcoambrosini@pm.me>
  5. *
  6. * @license GNU AGPL version 3 or any later version
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License as
  10. * published by the Free Software Foundation, either version 3 of the
  11. * License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. import type { Config } from 'jest'
  23. // TODO: find a way to consolidate this in one place, with webpack.common.js
  24. const ignorePatterns = [
  25. '@buttercup/fetch',
  26. '@juliushaertl',
  27. '@mdi/svg',
  28. '@nextcloud/upload',
  29. '@nextcloud/vue',
  30. 'ansi-regex',
  31. 'camelcase',
  32. 'char-regex',
  33. 'hot-patcher',
  34. 'is-svg',
  35. 'mime',
  36. 'p-cancelable',
  37. 'p-limit',
  38. 'p-queue',
  39. 'p-timeout',
  40. 'splitpanes',
  41. 'string-length',
  42. 'strip-ansi',
  43. 'tributejs',
  44. 'unist-.+',
  45. 'vue-material-design-icons',
  46. 'webdav',
  47. 'yocto-queue',
  48. ]
  49. const config: Config = {
  50. testMatch: ['<rootDir>/**/*.(spec|test).(ts|js)'],
  51. clearMocks: true,
  52. setupFilesAfterEnv: ['<rootDir>/__tests__/jest-setup.ts'],
  53. testEnvironment: 'jest-environment-jsdom',
  54. preset: 'ts-jest/presets/js-with-ts',
  55. roots: [
  56. '<rootDir>/__mocks__',
  57. '<rootDir>/__tests__',
  58. '<rootDir>/apps',
  59. '<rootDir>/core',
  60. ],
  61. transform: {
  62. // process `*.js` files with `babel-jest`
  63. '^.+\\.js$': 'babel-jest',
  64. '^.+\\.vue$': '@vue/vue2-jest',
  65. '^.+\\.ts$': ['ts-jest', {
  66. // @see https://github.com/kulshekhar/ts-jest/issues/4081
  67. tsconfig: './__tests__/tsconfig.json',
  68. }],
  69. },
  70. transformIgnorePatterns: [
  71. 'node_modules/(?!(' + ignorePatterns.join('|') + ')/)',
  72. ],
  73. // Allow mocking svg files
  74. moduleNameMapper: {
  75. '^.+\\.svg(\\?raw)?$': '<rootDir>/__mocks__/svg.js',
  76. '\\.s?css$': '<rootDir>/__mocks__/css.js',
  77. },
  78. modulePathIgnorePatterns: [
  79. '<rootDir>/apps2/',
  80. '<rootDir>/apps-extra/',
  81. ],
  82. }
  83. export default config