jest.config.ts 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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/vue',
  29. 'ansi-regex',
  30. 'camelcase',
  31. 'char-regex',
  32. 'hot-patcher',
  33. 'is-svg',
  34. 'splitpanes',
  35. 'string-length',
  36. 'strip-ansi',
  37. 'tributejs',
  38. 'vue-material-design-icons',
  39. 'webdav',
  40. ]
  41. const config: Config = {
  42. testMatch: ['<rootDir>/**/*.(spec|test).(ts|js)'],
  43. clearMocks: true,
  44. setupFilesAfterEnv: ['<rootDir>/__tests__/jest-setup.ts'],
  45. testEnvironment: 'jest-environment-jsdom',
  46. preset: 'ts-jest/presets/js-with-ts',
  47. roots: [
  48. '<rootDir>/__mocks__',
  49. '<rootDir>/__tests__',
  50. '<rootDir>/apps',
  51. '<rootDir>/core',
  52. ],
  53. transform: {
  54. // process `*.js` files with `babel-jest`
  55. '^.+\\.js$': 'babel-jest',
  56. '^.+\\.vue$': '@vue/vue2-jest',
  57. '^.+\\.ts$': ['ts-jest', {
  58. // @see https://github.com/kulshekhar/ts-jest/issues/4081
  59. tsconfig: './__tests__/tsconfig.json',
  60. }],
  61. },
  62. transformIgnorePatterns: [
  63. 'node_modules/(?!(' + ignorePatterns.join('|') + ')/)',
  64. ],
  65. // Allow mocking svg files
  66. moduleNameMapper: {
  67. '^.+\\.svg(\\?raw)?$': '<rootDir>/__mocks__/svg.js',
  68. '\\.s?css$': '<rootDir>/__mocks__/css.js',
  69. },
  70. modulePathIgnorePatterns: [
  71. '<rootDir>/apps2/',
  72. '<rootDir>/apps-extra/',
  73. ],
  74. }
  75. export default config