1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import type { Config } from 'jest'
- const ignorePatterns = [
- '@buttercup/fetch',
- '@juliushaertl',
- '@mdi/svg',
- '@nextcloud/upload',
- '@nextcloud/vue',
- 'ansi-regex',
- 'camelcase',
- 'char-regex',
- 'hot-patcher',
- 'is-svg',
- 'layerr',
- 'mime',
- 'p-cancelable',
- 'p-limit',
- 'p-queue',
- 'p-timeout',
- 'splitpanes',
- 'string-length',
- 'strip-ansi',
- 'tributejs',
- 'unist-.+',
- 'vue-material-design-icons',
- 'webdav',
- 'yocto-queue',
- ]
- const config: Config = {
- testMatch: ['<rootDir>/**/*.(spec|test).(ts|js)'],
- clearMocks: true,
- setupFilesAfterEnv: ['<rootDir>/__tests__/jest-setup.ts'],
- testEnvironment: 'jest-environment-jsdom',
- preset: 'ts-jest/presets/js-with-ts',
- roots: [
- '<rootDir>/__mocks__',
- '<rootDir>/__tests__',
- '<rootDir>/apps',
- '<rootDir>/core',
- ],
- transform: {
-
- '^.+\\.js$': 'babel-jest',
- '^.+\\.vue$': '@vue/vue2-jest',
- '^.+\\.ts$': ['ts-jest', {
-
- tsconfig: './__tests__/tsconfig.json',
- }],
- },
- transformIgnorePatterns: [
- 'node_modules/(?!(' + ignorePatterns.join('|') + ')/)',
- ],
-
- moduleNameMapper: {
- '^.+\\.svg(\\?raw)?$': '<rootDir>/__mocks__/svg.js',
- '\\.s?css$': '<rootDir>/__mocks__/css.js',
- },
- modulePathIgnorePatterns: [
- '<rootDir>/apps2/',
- '<rootDir>/apps-extra/',
- ],
- }
- export default config
|