jest.config.ts 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. '@juliushaertl',
  26. '@mdi/svg',
  27. '@nextcloud/vue',
  28. 'ansi-regex',
  29. 'char-regex',
  30. 'splitpanes',
  31. 'string-length',
  32. 'strip-ansi',
  33. 'tributejs',
  34. 'vue-material-design-icons',
  35. ]
  36. const config: Config = {
  37. testMatch: ['<rootDir>/**/*.(spec|test).(ts|js)'],
  38. clearMocks: true,
  39. setupFilesAfterEnv: ['<rootDir>/__tests__/jest-setup.ts'],
  40. testEnvironment: 'jest-environment-jsdom',
  41. preset: 'ts-jest/presets/js-with-ts',
  42. roots: [
  43. '<rootDir>/__mocks__',
  44. '<rootDir>/__tests__',
  45. '<rootDir>/apps',
  46. '<rootDir>/core',
  47. ],
  48. transform: {
  49. // process `*.js` files with `babel-jest`
  50. '^.+\\.js$': 'babel-jest',
  51. '^.+\\.vue$': '@vue/vue2-jest',
  52. },
  53. transformIgnorePatterns: [
  54. 'node_modules/(?!(' + ignorePatterns.join('|') + ')/)',
  55. ],
  56. // Allow mocking svg files
  57. moduleNameMapper: {
  58. '^.+\\.svg(\\?raw)?$': '<rootDir>/__mocks__/svg.js',
  59. },
  60. modulePathIgnorePatterns: [
  61. '<rootDir>/apps2/',
  62. '<rootDir>/apps-extra/',
  63. ],
  64. }
  65. export default config