You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jest.config.ts 2.3KB

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